diff --git a/src/router/index.ts b/src/router/index.ts index ac6955e..038c7d1 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -25,7 +25,7 @@ const routes = [ ] const router = createRouter({ - history: createWebHistory('/today-popup-web'), + history: createWebHistory(), routes, }) diff --git a/vite.config.ts b/vite.config.ts index 1e0b969..05c1740 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,5 +4,4 @@ import vue from '@vitejs/plugin-vue' // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue()], - base: '/today-popup-web', })