From fcb0e79051549c2910a9132c5978841a35478e3c Mon Sep 17 00:00:00 2001 From: vanshaj2023 Date: Mon, 9 Mar 2026 03:17:55 +0530 Subject: [PATCH] fix: remove commented-out base path referencing old project name --- vite.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index acd5aeeb..c78bf0eb 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,7 +4,6 @@ import tailwindcss from '@tailwindcss/vite'; // https://vite.dev/config/ export default defineConfig({ - // base : '/visualize-json-schema/', - plugins: [react(), tailwindcss()], +plugins: [react(), tailwindcss()], })