concept-collection / remote-hdf5-lazy-read
Use a relative base so the build works at any mount point
owner <owner@noreply.vault1.fly.dev> committed commit 55360ee1eb4a parent 5321a9c Browse files
1 changed file+2−1
vite.config.tsmodified+2−1View file
@@ -4,5 +4,6 @@ import react from "@vitejs/plugin-react";
44 // https://vite.dev/config/
55 export default defineConfig({
66 plugins: [react()],
7- base: "/remote-hdf5-lazy-read/",
7+ // Relative base, so the build works wherever it is mounted
8+ base: "./",
89 });