From 262c6df86464f1cc252d1a53d31efc815bed289a Mon Sep 17 00:00:00 2001 From: inaseem Date: Fri, 2 Feb 2024 19:36:49 +0530 Subject: [PATCH] fix: base url --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index b42f2ab..fc6f542 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,7 +4,7 @@ import react from '@vitejs/plugin-react'; export default defineConfig(({ mode }) => { return { - base: mode === 'production' ? '/hews' : '/', + base: mode === 'production' ? '/hews/' : '/', plugins: [react()], test: { environment: 'jsdom',