.
All checks were successful
Deploy blog-frontend / build-and-deploy (push) Successful in 1m47s

This commit is contained in:
ParkWonYeop
2025-12-28 02:16:06 +09:00
parent 5f3089a49c
commit 4c0f792a01

View File

@@ -1,7 +1,8 @@
import { MetadataRoute } from 'next';
export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
const baseUrl = 'https://blog.wypark.me'; // 본인 도메인
const baseUrl = 'https://blog.wypark.me';
// API 주소 환경변수 사용 (없으면 로컬)
const apiUrl = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:8080';
// 1. 고정된 정적 페이지들
@@ -18,19 +19,13 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
changeFrequency: 'daily',
priority: 0.8,
},
// 필요하다면 /login, /signup 등 추가
];
try {
// 2. API에서 게시글 목록 가져오기
// (기존 api/posts.ts를 쓰면 authStore의 localStorage 때문에 에러가 날 수 있어 fetch로 직접 호출합니다)
const response = await fetch(`${apiUrl}/api/posts?size=1000&sort=createdAt,desc`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
// Next.js 캐싱 옵션: 1시간(3600초)마다 새로고침 (새 글 쓰면 1시간 뒤 반영)
// 즉시 반영을 원하면 { cache: 'no-store' } 로 변경하세요.
headers: { 'Content-Type': 'application/json' },
next: { revalidate: 3600 }
});
@@ -43,7 +38,8 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
// 3. 게시글 데이터를 사이트맵 형식으로 변환
const postRoutes = posts.map((post: any) => ({
url: `${baseUrl}/posts/${post.slug}`,
// 🛠️ 핵심 수정: slug를 encodeURIComponent로 감싸서 특수문자(&, 한글 등)를 안전하게 처리합니다.
url: `${baseUrl}/posts/${encodeURIComponent(post.slug)}`,
lastModified: new Date(post.createdAt),
changeFrequency: 'weekly' as const,
priority: 0.8,
@@ -53,7 +49,6 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
} catch (error) {
console.error('Sitemap generation error:', error);
// 에러 나면 정적 페이지만이라도 반환
return routes;
}
}