We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 315aa12 commit 239e03fCopy full SHA for 239e03f
1 file changed
vite.config.mts
@@ -1,10 +1,10 @@
1
import react from "@vitejs/plugin-react-swc";
2
import { defineConfig } from "vite";
3
4
-console.log(`Building DeepGit with BASE_PATH="${process.env.BASE_PATH || "/deepgit"}"`);
+console.log(`Building DeepGit with BASE_PATH="${process.env.BASE_PATH || "/"}"`);
5
6
export default defineConfig({
7
- base: process.env.BASE_PATH || "/deepgit",
+ base: process.env.BASE_PATH || "/",
8
plugins: [react()],
9
server: {
10
host: "0.0.0.0",
@@ -18,3 +18,4 @@ export default defineConfig({
18
allowedHosts: ["deepgit.onrender.com"]
19
},
20
});
21
+
0 commit comments