From d6e4b6497f2e1d07eb92144c0592e5b06069258c Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Thu, 19 Oct 2023 17:43:54 +0530 Subject: [PATCH] chore: convey the base route as admin where sh-admin gets served --- packages/hoppscotch-sh-admin/src/modules/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hoppscotch-sh-admin/src/modules/router.ts b/packages/hoppscotch-sh-admin/src/modules/router.ts index 317f30000..28404f55c 100644 --- a/packages/hoppscotch-sh-admin/src/modules/router.ts +++ b/packages/hoppscotch-sh-admin/src/modules/router.ts @@ -42,7 +42,7 @@ export const isLoadingInitialRoute = readonly(_isLoadingInitialRoute); export default { onVueAppInit(app) { const router = createRouter({ - history: createWebHistory(), + history: createWebHistory('/admin'), routes, });