Skip to content

Commit

Permalink
Switch to hash history
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalikL committed May 10, 2024
1 parent 24c7322 commit 51f89ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
import { createRouter, createWebHashHistory } from 'vue-router'
import DockSearch from '../components/Dock/DockSearch.vue'

const router = createRouter({
history: createWebHistory('/obs-sda-hymnal/'),
history: createWebHashHistory(),
routes: [
{
path: '/',
Expand All @@ -27,7 +27,7 @@ const router = createRouter({
]
},
{
path: '/obs-sda-hymnal/browser',
path: '/browser',
name: 'browser',
component: () => import('../views/Browser.vue')
}
Expand Down

0 comments on commit 51f89ea

Please sign in to comment.