|
@@ -1,4 +1,4 @@
|
|
|
-import { createRouter, createWebHistory } from 'vue-router'
|
|
|
+import { createRouter, createWebHashHistory } from 'vue-router'
|
|
|
import HomeView from '../views/HomeView.vue'
|
|
|
import MinimalistView from '../assets/templates/ui-standard/MinimalistView.vue'
|
|
|
import DarkModeView from '../assets/templates/ui-standard/DarkModeView.vue'
|
|
@@ -164,7 +164,7 @@ const routes = [
|
|
|
]
|
|
|
|
|
|
const router = createRouter({
|
|
|
- history: createWebHistory(import.meta.env.BASE_URL),
|
|
|
+ history: createWebHashHistory(import.meta.env.BASE_URL),
|
|
|
routes,
|
|
|
scrollBehavior(to, from, savedPosition) {
|
|
|
if (to.hash) {
|