diff --git a/src/router/index.ts b/src/router/index.ts index 500f9f09dc..1c2f1017c1 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -84,6 +84,11 @@ const router = createRouter({ path: '/', name: 'home', component: HomeComponent, + // TODO_OFFLINE don't redirect when there's actually something useful on the home page + redirect: { + name: 'project.index', + params: { projectId: 1 }, + }, }, { path: '/:pathMatch(.*)*',