We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad323fe commit 70e2ca2Copy full SHA for 70e2ca2
astro.config.mjs
@@ -6,7 +6,8 @@ import sitemap from '@astrojs/sitemap';
6
// https://astro.build/config
7
export default defineConfig({
8
site: 'https://serrexlabs.github.io',
9
- base: '/minimal_press',
+ // Only use base path for GitHub Pages deployment
10
+ base: process.env.GITHUB_ACTIONS ? '/minimal_press' : undefined,
11
integrations: [
12
mdx(),
13
sitemap(),
0 commit comments