Skip to content

Commit

Permalink
fix: change web history system
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanGmG committed Jul 2, 2024
1 parent 1cd4cc3 commit 87445be
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,9 +1,9 @@
import {createRouter, createWebHistory} from "vue-router";
import {createRouter, createWebHashHistory, createWebHistory} from "vue-router";

import HomePage from '@/pages/Home.page.vue'

const router = createRouter({
history: createWebHistory("web"),
history: createWebHashHistory("web"),
routes: [
{
path: "/",
Expand Down

0 comments on commit 87445be

Please sign in to comment.