fix(frontend): スラッシュを含むページを閲覧できるように (#15394)

* fix(frontend): スラッシュを含むページを閲覧できるように

* Update Changelog

* fix
This commit is contained in:
かっこかり 2025-02-04 17:40:44 +09:00 committed by GitHub
parent 495d72ed2a
commit cb48853334
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 9 deletions

View file

@ -17,10 +17,7 @@ export const page = (loader: AsyncComponentLoader) => defineAsyncComponent({
});
const routes: RouteDef[] = [{
path: '/@:initUser/pages/:initPageName/view-source',
component: page(() => import('@/pages/page-editor/page-editor.vue')),
}, {
path: '/@:username/pages/:pageName',
path: '/@:username/pages/:pageName(*)',
component: page(() => import('@/pages/page.vue')),
}, {
path: '/@:acct/following',