P1 IA 마이그레이션 — 기존 URL → 새 URL 영구 리다이렉트 (permanent: true): - /services/music → /music/packs - /services/music/samples → /music/samples - /studio → /music/studio - /freelance → /work/freelance - /services/website → /work/website - /services/website/samples/:slug → /work/website/samples/:slug - /services/blog → /work/blog - /saju → /work/saju - /saju/input → /work/saju/input - /saju/result → /work/saju/result 이 시점에 destination 페이지 아직 없음 (Phase B에서 생성). 단, redirect 자체는 빌드 OK. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
52 lines
1.9 KiB
TypeScript
52 lines
1.9 KiB
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: "/:path*",
|
|
headers: [
|
|
{ key: "X-Frame-Options", value: "DENY" },
|
|
{ key: "X-Content-Type-Options", value: "nosniff" },
|
|
{ key: "Referrer-Policy", value: "strict-origin-when-cross-origin" },
|
|
{ key: "X-XSS-Protection", value: "1; mode=block" },
|
|
{
|
|
key: "Strict-Transport-Security",
|
|
value: "max-age=63072000; includeSubDomains; preload",
|
|
},
|
|
{
|
|
key: "Permissions-Policy",
|
|
value: "camera=(), microphone=(), geolocation=()",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
source: "/api/:path*",
|
|
headers: [
|
|
{ key: "Cache-Control", value: "no-store, max-age=0" },
|
|
{ key: "X-Frame-Options", value: "DENY" },
|
|
],
|
|
},
|
|
];
|
|
},
|
|
async redirects() {
|
|
return [
|
|
// Music 사업부 마이그
|
|
{ source: '/services/music', destination: '/music/packs', permanent: true },
|
|
{ source: '/services/music/samples', destination: '/music/samples', permanent: true },
|
|
{ source: '/studio', destination: '/music/studio', permanent: true },
|
|
// Custom Build 사업부 마이그
|
|
{ source: '/freelance', destination: '/work/freelance', permanent: true },
|
|
{ source: '/services/website', destination: '/work/website', permanent: true },
|
|
{ source: '/services/website/samples/:slug', destination: '/work/website/samples/:slug', permanent: true },
|
|
{ source: '/services/blog', destination: '/work/blog', permanent: true },
|
|
// 사주 마이그 (단순 URL, 카탈로그 spec은 보류)
|
|
{ source: '/saju', destination: '/work/saju', permanent: true },
|
|
{ source: '/saju/input', destination: '/work/saju/input', permanent: true },
|
|
{ source: '/saju/result', destination: '/work/saju/result', permanent: true },
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|