concept-collection / commoncall
Use a relative base so the build works at any mount point
owner <owner@noreply.vault1.fly.dev> committed commit e4a562ae9fa9 parent 548b05f Browse files
1 changed file+2−2
vite.config.tsmodified+2−2View file
@@ -2,7 +2,7 @@ import {defineConfig} from 'vite'
22 import react from '@vitejs/plugin-react'
33
44 export default defineConfig({
5- // Project pages are served from https://<org>.github.io/commoncall/
6- base: '/commoncall/',
5+ // Relative base, so the build works wherever it is mounted
6+ base: './',
77 plugins: [react()]
88 })