fix client router catchall

fixes #8903
This commit is contained in:
Johann150 2022-06-29 22:09:44 +02:00
parent b3983ee3f7
commit 5d6c624757

View File

@ -227,7 +227,7 @@ export const routes = [{
component: $i ? page(() => import('./pages/timeline.vue')) : page(() => import('./pages/welcome.vue')), component: $i ? page(() => import('./pages/timeline.vue')) : page(() => import('./pages/welcome.vue')),
globalCacheKey: 'index', globalCacheKey: 'index',
}, { }, {
path: '/(*)', path: '/:(*)',
component: page(() => import('./pages/not-found.vue')), component: page(() => import('./pages/not-found.vue')),
}]; }];