Update router
All checks were successful
Deploy Application / deploy (push) Successful in 5s

This commit is contained in:
2025-06-12 21:37:55 +04:00
parent 002ebfe362
commit fbce353c1f

View File

@ -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,
})