Getting Started | Next.js
start with typescript
yarn create next-app --typescript ✔ What is your project named? … my-next
cd my-next yarn dev
pages 단위로 라우팅이 이뤄진다.
동적 라우팅도 가능하다.
pages/posts/[id].js → posts/1, posts/2
pages/posts/[id].js
posts/1
posts/2