first commit

This commit is contained in:
2026-05-18 11:25:51 +09:00
commit 4d70b1428a
197 changed files with 28388 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'
// 코드 스플리팅 — 모든 페이지 컴포넌트는 lazy import 처리
const routes: RouteRecordRaw[] = [
{
path: '/',
name: 'home',
component: () => import('@/pages/HomePage.vue'),
meta: { requiresAuth: false },
},
{
path: '/:pathMatch(.*)*',
name: 'not-found',
component: () => import('@/pages/NotFoundPage.vue'),
},
]
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes,
})
// 네비게이션 가드 — 인증 분기 (스토어 도입 후 useAuthStore로 교체)
router.beforeEach((to) => {
if (to.meta.requiresAuth) {
// TODO: useAuthStore().isLoggedIn 검사 후 '/login' 으로 리다이렉트
}
return true
})
export default router