From 1b42dba902423c6bc7a1cadc1fb521fb93a5b4a9 Mon Sep 17 00:00:00 2001 From: viper151 Date: Mon, 26 Jan 2026 11:56:05 +0100 Subject: [PATCH] Set base path for Vite configuration --- vite.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vite.config.js b/vite.config.js index 5fad3ad..1fcac95 100755 --- a/vite.config.js +++ b/vite.config.js @@ -7,6 +7,7 @@ export default defineConfig(({ command, mode }) => { return { + base: './', plugins: [react()], server: { port: parseInt(env.VITE_PORT) || 5173, @@ -45,4 +46,4 @@ export default defineConfig(({ command, mode }) => { } } } -}) \ No newline at end of file +})