production #4

Merged
levis merged 18 commits from production into develop 2025-06-14 08:20:01 +00:00
Showing only changes of commit fbce353c1f - Show all commits

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