We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e69c367 commit 0cdeb83Copy full SHA for 0cdeb83
site/vite.config.ts
@@ -6,5 +6,6 @@ const useProjectBase = process.env.GITHUB_ACTIONS === 'true' && repositoryName
6
7
export default defineConfig({
8
plugins: [react()],
9
- base: useProjectBase ? `/${repositoryName.toLowerCase()}/` : '/',
+ // GitHub Pages project paths are case-sensitive and must match the repo name.
10
+ base: useProjectBase ? `/${repositoryName}/` : '/',
11
})
0 commit comments