Update: 2026-07-13 22:31:28

This commit is contained in:
Hamza-Ayed
2026-07-13 22:31:29 +03:00
parent c6f48a1f91
commit a2484d0bf5
3 changed files with 2 additions and 1 deletions
Vendored
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -20,7 +20,7 @@ const routes = [
{ path: '/:pathMatch(.*)*', redirect: '/dashboard' }, { path: '/:pathMatch(.*)*', redirect: '/dashboard' },
] ]
const router = createRouter({ history: createWebHistory(), routes }) const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes })
router.beforeEach((to) => { router.beforeEach((to) => {
const auth = useAuthStore() const auth = useAuthStore()
+1
View File
@@ -3,5 +3,6 @@ import vue from '@vitejs/plugin-vue'
export default defineConfig({ export default defineConfig({
plugins: [vue()], plugins: [vue()],
base: '/transit/',
server: { port: 5183 }, server: { port: 5183 },
}) })