diff --git a/src/config/router/index.ts b/src/config/router/index.ts index 17412c9..ae301b3 100644 --- a/src/config/router/index.ts +++ b/src/config/router/index.ts @@ -1,8 +1,8 @@ -import { createRouter, createWebHashHistory } from 'vue-router' +import { createRouter, createWebHistory } from 'vue-router' import routes from './routes' const router = createRouter({ - history: createWebHashHistory(import.meta.env.VITE_URL), + history: createWebHistory(import.meta.env.VITE_URL), routes, })