fix client router catchall

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

View file

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