fix. 코드 리팩토링

This commit is contained in:
clkim
2026-01-16 14:55:02 +09:00
parent c8cd7f780e
commit 40dc7f0e40
34 changed files with 238 additions and 369 deletions

View File

@@ -6,7 +6,7 @@ export default defineNuxtRouteMiddleware(to => {
if (to.path.includes('/error')) return
// inspection 페이지는 실행X -----
if (to.path.includes('inspection')) return
if (to.path.includes('/inspection')) return
const gameDataStore = useGameDataStore()
const { langCodes, intro } = storeToRefs(gameDataStore)

View File

@@ -14,7 +14,7 @@ export default defineNuxtRouteMiddleware(async (to, _from) => {
if (to.path.includes('/error')) return
// inspection 페이지는 실행X -----
if (to.path.includes('inspection')) return
if (to.path.includes('/inspection')) return
const gameDataStore = useGameDataStore()
const pageDataStore = usePageDataStore()