Hide Index when logged in
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
2022-04-23 10:49:03 +00:00
parent ee4fe1052d
commit 1a78daf23d

View File

@ -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",