From ff2598ce8f0255e771c7b86937041fc19aca3613 Mon Sep 17 00:00:00 2001 From: superbuggy Date: Mon, 4 Nov 2024 21:24:33 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Use=20hash=20history?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/router/index.ts b/src/router/index.ts index 5687592..20c35de 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -1,8 +1,8 @@ -import { createRouter, createWebHistory } from "vue-router"; +import { createRouter, createWebHashHistory } from "vue-router"; import TabSheet from "../views/TabSheet.vue"; const router = createRouter({ - history: createWebHistory(import.meta.env.BASE_URL), + history: createWebHashHistory(import.meta.env.BASE_URL), routes: [ { path: "/",