Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const getSearchUniversitiesByFilter = async (
};

export const getSearchUniversitiesAllRegions = async (): Promise<ListUniversity[]> => {
const endpoint = `/univ-apply-infos/search/filter`;
const endpoint = `/univ-apply-infos/search/text?value=`;
const response = await serverFetch<UniversitySearchResponse>(endpoint);

if (!response.ok) {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/app/university/[homeUniversity]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { HomeUniversitySlug } from "@/types/university";

import UniversityListContent from "./_ui/UniversityListContent";

export const revalidate = 3600; // 1시간마다 재검증 (ISR)
export const revalidate = 15552000; // 6개월마다 재검증 (ISR)

// 정적 경로 생성
export async function generateStaticParams() {
Expand Down