Skip to content

Commit 8dc1be2

Browse files
committed
fix: set correct base path for GitHub Pages deployment
base was '/' but site is served at /agent-sh.dev/, causing CSS, favicon, and navigation links to 404 on GitHub Pages.
1 parent 0901a86 commit 8dc1be2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ import { defineConfig } from 'astro/config';
33

44
export default defineConfig({
55
site: 'https://agent-sh.github.io',
6-
base: '/',
6+
base: '/agent-sh.dev/',
77
});

0 commit comments

Comments
 (0)