From 4896e44f9fa12e27f21a94b6e9a2d71d7588fe49 Mon Sep 17 00:00:00 2001 From: manNomi Date: Sat, 14 Feb 2026 22:31:24 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20web=20CI=20=ED=83=80=EC=9E=85=20?= =?UTF-8?q?=EB=A3=A8=ED=8A=B8=20=EA=B2=BD=EB=A1=9C=EB=A5=BC=20=EC=95=B1=20?= =?UTF-8?q?=EB=A1=9C=EC=BB=AC=EB=A1=9C=20=EC=A0=9C=ED=95=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/tsconfig.ci.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/tsconfig.ci.json b/apps/web/tsconfig.ci.json index afb814e21..86819f174 100644 --- a/apps/web/tsconfig.ci.json +++ b/apps/web/tsconfig.ci.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "typeRoots": ["./node_modules/@types", "../../node_modules/@types"], + "typeRoots": ["./node_modules/@types"], "types": ["react", "react-dom"], "skipLibCheck": true } From c25c7ace95fb2186a1b0e0dc95f112f9659b0ba3 Mon Sep 17 00:00:00 2001 From: manNomi Date: Sat, 14 Feb 2026 23:13:43 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20university=20=EC=A4=91=EB=B3=B5=20?= =?UTF-8?q?=EB=9D=BC=EC=9A=B0=ED=8A=B8=20=EC=A0=9C=EA=B1=B0=EB=A1=9C=20man?= =?UTF-8?q?ifest=20=EB=88=84=EB=9D=BD=20=EB=B0=A9=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/app/university/page.tsx | 39 ---------------------------- 1 file changed, 39 deletions(-) delete mode 100644 apps/web/src/app/university/page.tsx diff --git a/apps/web/src/app/university/page.tsx b/apps/web/src/app/university/page.tsx deleted file mode 100644 index 8c879c025..000000000 --- a/apps/web/src/app/university/page.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import type { Metadata } from "next"; - -import TopDetailNavigation from "@/components/layout/TopDetailNavigation"; -import { HOME_UNIVERSITY_LIST } from "@/constants/university"; - -import HomeUniversityCard from "./(home)/_ui/HomeUniversityCard"; - -export const revalidate = 3600; // 1시간마다 재검증 (ISR) - -export const metadata: Metadata = { - title: "대학 선택 | 솔리드커넥션", - description: "소속 대학교를 선택하여 교환학생 정보를 확인하세요.", -}; - -const UniversitySelectPage = () => { - return ( - <> - -
-
-

소속 대학교 선택

-

- 소속 대학교를 선택하면 -
- 해당 대학의 교환학생 정보를 확인할 수 있습니다. -

-
- -
- {HOME_UNIVERSITY_LIST.map((university) => ( - - ))} -
-
- - ); -}; - -export default UniversitySelectPage;