diff --git a/web/src/router/index.ts b/web/src/router/index.ts index d858949..26504d8 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -14,7 +14,12 @@ import Settings from "../pages/Settings.vue"; import WelcomePage from "../pages/WelcomePage.vue"; const routes = [ - { path: "/", name: "Index", component: WelcomePage }, + { + path: "/", + name: "Index", + component: WelcomePage, + meta: { hideForAuth: true }, + }, { path: "/dashboard", name: "Dashboard",