최종 수정 : 2024-06-01
redirects
const API_KEY = process.env.API_KEY;
module.exports = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/old-blog/:path*',
destination: '/new-sexy-blog/:path*',
permanent: false,
},
];
},
};
rewrites
const API_KEY = process.env.API_KEY;
module.exports = {
reactStrictMode: true,
async rewrites() {
return [
{
source: '/api/movies',
destination: `https://api.themoviedb.org/3/movie/popular?api_key=${API_KEY}`,
},
{
source: '/api/movies/:id',
destination: `https://api.themoviedb.org/3/movie/:id?api_key=${API_KEY}`,
},
];
},
};
'프론트엔드 > Next.JS' 카테고리의 다른 글
Next.js API (1) | 2024.06.04 |
---|---|
[팀미팅 질문] 서버 컴포넌트와 클라이언트 컴포넌트의 차이와 용례 (1) | 2024.06.03 |
Next.js의 정해진 함수(SSG, SSR) (0) | 2024.05.31 |
Next.js 개발모드, 빌드, 실행 그리고 배포 (0) | 2024.05.31 |
[팀 미팅 질문] Next.js를 사용하면 React과 비교했을 때의 이점은 무엇인가? (0) | 2024.05.31 |
댓글