diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-05-07 10:45:01 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-05-07 10:45:01 +0900 |
| commit | 351d91b1c390f4e2dcfcb445018be456cd616d8b (patch) | |
| tree | 4de2ad38b21088d0f561113cfa68350ff64976fb /packages/frontend/src/router.definition.ts | |
| parent | 🎨 (diff) | |
| download | misskey-351d91b1c390f4e2dcfcb445018be456cd616d8b.tar.gz misskey-351d91b1c390f4e2dcfcb445018be456cd616d8b.tar.bz2 misskey-351d91b1c390f4e2dcfcb445018be456cd616d8b.zip | |
enhance(frontend): add debug room
Diffstat (limited to 'packages/frontend/src/router.definition.ts')
| -rw-r--r-- | packages/frontend/src/router.definition.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend/src/router.definition.ts b/packages/frontend/src/router.definition.ts index 462b8e713f..5e0e6f7286 100644 --- a/packages/frontend/src/router.definition.ts +++ b/packages/frontend/src/router.definition.ts @@ -592,6 +592,10 @@ export const ROUTE_DEF = [{ component: page(() => import('@/pages/reversi/game.vue')), loginRequired: false, }, { + path: '/debug', + component: page(() => import('@/pages/debug.vue')), + loginRequired: false, +}, { // テスト用リダイレクト設定。ログイン中ユーザのプロフィールにリダイレクトする path: '/redirect-test', redirect: $i ? `@${$i.username}` : '/', |