Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mubaidr authored Mar 5, 2025
1 parent ca94ada commit f29d910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/router/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createRouter, createWebHashHistory } from "vue-router"
import { createRouter, createMemoryHistory } from "vue-router"
import { handleHotUpdate, routes } from "vue-router/auto-routes"

routes.push({
Expand All @@ -7,7 +7,7 @@ routes.push({
})

export const appRouter = createRouter({
history: createWebHashHistory(import.meta.env.BASE_URL),
history: createMemoryHistory(import.meta.env.BASE_URL),
routes,
})

Expand Down

0 comments on commit f29d910

Please sign in to comment.