From fbce353c1f0d4fecee7dcd72b5ae3d38b1f47070 Mon Sep 17 00:00:00 2001 From: koziavin Date: Thu, 12 Jun 2025 21:37:55 +0400 Subject: [PATCH] Update router --- src/config/router/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, })