We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a506ac commit 1c6f050Copy full SHA for 1c6f050
src/router/index.ts
@@ -5,12 +5,12 @@
5
*/
6
7
// Composables
8
-import { createRouter, createWebHistory } from 'vue-router/auto'
+import { createRouter, createWebHashHistory } from 'vue-router/auto'
9
import { setupLayouts } from 'virtual:generated-layouts'
10
import { routes } from 'vue-router/auto-routes'
11
12
const router = createRouter({
13
- history: createWebHistory(import.meta.env.BASE_URL),
+ history: createWebHashHistory(import.meta.env.BASE_URL),
14
routes: setupLayouts(routes),
15
})
16
0 commit comments