-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
인쇄일 : 전자책 초판발행 2024년 01월 15일
목차 : 4.3.6 next.config.js 살펴보기
페이지 : 334p
내용 :
예시 코드에 오타가 있는것 같아서 문의드립니다.
처음 주석 부분에
/tag/foo => /tag/foo/pages/1 이렇게 적혀있는 부분은
/tag/foo => /tags/foo/pages/1 이렇게 변경되어야 할 것 같습니다!
세번쩨 주석 부분에도
/tag/foo/pages/something => /tags/foo/pages/1 이렇게 적혀있는 부분은 /tags/foo/pages/something => /tags/foo/pages/1 이렇게 변경되어야 하지 않을까 싶어 문의드립니다!
[코드 4.5] redirects 예제
module.exports = {
redirects(){
return [
{
// /tag/foo => /tag/foo/pages/1 이부분이랑
},
{
~~~
},
{
// /tag/foo/pages/something => /tags/foo/pages/1 이부분입니다!
}
]
}
}