const nextConfig = {
reactStrictMode: true,
async redirects(){
return[
{
source:"/어떤URL/:path*",
destination:"보낼URL/:path*",
permanent:false
}
]
}
}
souce는 클라이언트 사이드에서 요청한 url이 되겠고 destination은 해당 요청url이 있으면 자동으로 redirect해줄 url을 명시하는 곳이다.
permanent는 영문 뜻대로 영구적으로 이 브라우저가 해당 요청사항을 저장할 것인지를 지정해주는 속성이다.
*
또한 아스타리스크를 통하여 url뒤에올 경로모든 것들을 그대로 들고 destination url로 보낼 수도 있다.
const 보안API키 = "1234567890"
const nextConfig = {
reactStrictMode: true,
async redirects(){
return[
{
source:"/어떤URL",
destination:"보낼URL",
permanent:false
}
]
},
async rewrites(){
return[
{
source:"/어떤URL",
destination:`/보낼uRL${보안API키}`
}
]
}
}
직방 프론트로 이직할려구요?