From b915bef34a6e999b3edfafe2729440f19576ed12 Mon Sep 17 00:00:00 2001 From: Thammarong Glomjai Date: Fri, 15 Nov 2024 04:33:08 +0700 Subject: [PATCH] fix: change base path to / --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index c811639..3ef8ac0 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -7,7 +7,7 @@ import tailwindcss from 'tailwindcss' // https://vite.dev/config/ export default defineConfig({ - base: '/bronx/', + base: '/', css: { postcss: { plugins: [autoprefixer(), tailwindcss()],