Skip to content

Commit 1c6f050

Browse files
- CHG: Changed router to hash.
1 parent 9a506ac commit 1c6f050

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/router/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
*/
66

77
// Composables
8-
import { createRouter, createWebHistory } from 'vue-router/auto'
8+
import { createRouter, createWebHashHistory } from 'vue-router/auto'
99
import { setupLayouts } from 'virtual:generated-layouts'
1010
import { routes } from 'vue-router/auto-routes'
1111

1212
const router = createRouter({
13-
history: createWebHistory(import.meta.env.BASE_URL),
13+
history: createWebHashHistory(import.meta.env.BASE_URL),
1414
routes: setupLayouts(routes),
1515
})
1616

0 commit comments

Comments
 (0)