routing
next.js는 자체적인 라우팅 기능을 제공한다.
page 디렉토리 아래 nest된 구조를 기본적으로 라우팅으로 사용한다.
- pages/index.tsx : /
- pages/upload.tsx : /upload
다이나믹 라우팅또한 다음과 같이 구현할 수 있다.
- pages/post/[postId].tsx : /post/:postId
참고로 다음과 같이([...]) 작성하면 아래 모든 path와 매칭된다.
- pages/post/[...all].js : /post/*