fix client router catchall

fixes #8903
This commit is contained in:
Johann150 2022-06-29 22:09:44 +02:00
parent 8b7dcf4dba
commit ca6afd40ad
No known key found for this signature in database
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 1 additions and 1 deletions

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')),
}]; }];