diff --git a/app/game-frontend/src/router/index.ts b/app/game-frontend/src/router/index.ts index a7b9066..a129656 100644 --- a/app/game-frontend/src/router/index.ts +++ b/app/game-frontend/src/router/index.ts @@ -13,6 +13,7 @@ import BattleCenterView from '../views/BattleCenterView.vue'; import BattleSimulatorView from '../views/BattleSimulatorView.vue'; import NpcControlView from '../views/NpcControlView.vue'; import NotFoundView from '../views/NotFoundView.vue'; +import TournamentView from '../views/TournamentView.vue'; import { useSessionStore } from '../stores/session'; const routes = [ @@ -120,6 +121,15 @@ const routes = [ requiresGeneral: true, }, }, + { + path: '/tournament', + name: 'tournament', + component: TournamentView, + meta: { + requiresAuth: true, + requiresGeneral: true, + }, + }, { path: '/login', name: 'login', diff --git a/app/game-frontend/src/views/MainView.vue b/app/game-frontend/src/views/MainView.vue index 45e922e..feb9ee7 100644 --- a/app/game-frontend/src/views/MainView.vue +++ b/app/game-frontend/src/views/MainView.vue @@ -98,6 +98,7 @@ watch( 사령부 감찰부 전투 시뮬레이터 + 토너먼트 NPC 정책 유산 강화