Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Macawls committed Oct 12, 2023
1 parent 963193e commit 2ae65ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createRouter, createWebHistory } from 'vue-router'
import { createRouter, createWebHistory, createWebHashHistory } from 'vue-router'
import Home from '../views/Home.vue'

const routes = [
Expand All @@ -10,7 +10,7 @@ const routes = [
]

const router = createRouter({
history: createWebHistory(process.env.BASE_URL),
history: createWebHashHistory(),
routes
})

Expand Down

0 comments on commit 2ae65ca

Please sign in to comment.