fix client router catchall

fixes #8903
This commit is contained in:
Johann150 2022-06-29 22:09:44 +02:00
parent 29ef7c85d0
commit 95a8a937e2
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

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