Serve site from podscript.dev + brand logo/favicon/accent - #3
Merged
Conversation
Switch the site from project GitHub Pages (/podscript) to the custom domain podscript.dev served at root: drop Astro `base`, point `site` at the domain, set the sync-script BASE to empty, make landing links root-relative, and add site/public/CNAME. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This was referenced Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Switches the site from project GitHub Pages (
…github.io/podscript/) to the custom domainpodscript.dev, served at the domain root.astro.config.mjs: dropbase: '/podscript', setsite: 'https://podscript.dev'site/scripts/sync-docs.mjs:BASE = ''(internal content links become root-relative)site/src/content/docs/index.mdx: hero + blockquote links now root-relativesite/public/CNAME:podscript.dev(persists the custom domain across Actions deploys)Why now
The apex DNS already resolves ("DNS valid for primary" in Pages settings). With
basestill/podscript, the domain would load HTML but 404 on assets — this flip serves everything correctly at the root.Validation
npm run build→ 7 pages, clean;dist/CNAME=podscript.dev/podscript/links remain (the only match is the externalgithub.com/…/podscriptrepo link)/_astro/…reuse lint: committed files compliantAfter merge
Deploy runs and serves at root. Site goes fully live at https://podscript.dev once DNS (apex +
wwwCNAME) and the Let's Encrypt cert finish provisioning; GitHub auto-redirects the old…github.io/podscript/URL to the custom domain.🤖 Generated with Claude Code