Skip to content

Commit bf7d671

Browse files
authored
Revert baseUrl to /michelangelo/ until custom domain is verified (#1089)
**What type of PR is this? (check all applicable)** - [ ] Refactor - [ ] Feature - [x] Bug Fix - [ ] Optimization - [ ] Documentation Update **What changed?** Reverts `baseUrl` from `/` back to `/michelangelo/` and `url` back to `https://michelangelo-ai.github.io`. This undoes PR #1000. **Why?** The custom domain (`michelangelo-ai.org`) cannot be set in GitHub Pages repo settings because the domain hasn't been [verified at the org level](https://docs.github.com/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages) yet. Until verification is complete, the site is broken at both URLs: - `michelangelo-ai.org` → 404 (GitHub Pages doesn't know about the custom domain) - `michelangelo-ai.github.io/michelangelo/` → broken assets/links (baseUrl is `/` instead of `/michelangelo/`) **How did you test it?** Verified config matches the pre-PR #1000 state that was working. **Potential risks** None — restores the previously working configuration. **Release notes** Temporarily reverts custom domain config until domain verification is complete. **Documentation Changes** None
1 parent 6b11848 commit bf7d671

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

website/docusaurus.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ const config: Config = {
1212
experimental_faster: true,
1313
},
1414

15-
// Custom domain deployment config
16-
url: 'https://michelangelo-ai.org',
17-
baseUrl: '/',
15+
// GitHub Pages project site config (revert to /michelangelo/ until custom domain is verified)
16+
url: 'https://michelangelo-ai.github.io',
17+
baseUrl: '/michelangelo/',
1818
organizationName: 'michelangelo-ai',
1919
projectName: 'michelangelo',
2020

0 commit comments

Comments
 (0)