From 17edc3f8aaf489a74825b40c11d1a0822fb142c0 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Mon, 25 Jul 2022 19:17:47 -0700 Subject: [PATCH] Add back missing routes --- packages/client/src/router.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index be6d5d049..968f4393e 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -93,6 +93,14 @@ export const routes = [{ path: '/theme', name: 'theme', component: page(() => import('./pages/settings/theme.vue')), + }, { + path: '/custom-css', + name: 'custom-css', + component: page(() => import('./pages/settings/custom-css.vue')), + }, { + path: '/account-info', + name: 'account-info', + component: page(() => import('./pages/settings/account-info.vue')), }, { path: '/navbar', name: 'navbar',