From 4fbc1dfa34e814909446803a01b14e2ef710a7ff Mon Sep 17 00:00:00 2001 From: Bhanu Prakash Sai Potteri Date: Mon, 13 Jul 2026 22:03:28 +0530 Subject: [PATCH] chore: preview base path /bharti-axa/ (repo renamed) --- vite.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 5d20fe3..6260d9f 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -3,9 +3,9 @@ import react from '@vitejs/plugin-react'; import tailwindcss from '@tailwindcss/vite'; // https://vite.dev/config/ -// Preview is served under /bharti-axa-lead-to-policy/ (path-based frontgen preview); +// Preview is served under /bharti-axa/ (path-based frontgen preview); // local dev stays at / so the running dev server's URL is unaffected. export default defineConfig(({ command }) => ({ plugins: [react(), tailwindcss()], - base: command === 'build' ? '/bharti-axa-lead-to-policy/' : '/', + base: command === 'build' ? '/bharti-axa/' : '/', }));