diff options
-rw-r--r-- | src/router/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/router/index.js b/src/router/index.js index 27fd96e65..625eac04b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,4 +1,4 @@ -import { createRouter, createWebHistory } from 'vue-router'; +import { createRouter, createWebHashHistory } from 'vue-router'; //Do not change store or routes import. //Exact match alias set to support @@ -7,7 +7,7 @@ import store from '../store'; import routes from './routes'; const router = createRouter({ - history: createWebHistory(process.env.BASE_URL), + history: createWebHashHistory(), routes, linkExactActiveClass: 'nav-link--current', scrollBehavior() { |