[Next.js] Create a Next.js App

Create a Next.js App


생성

npx create-next-app
or
npx create-next-app@latest --ts

// 현재 폴더에 생성
npx create-next-app@latest --ts .

실행

npm run dev

새로운 페이지 생성

  • pages 폴더에 새로운 js 파일을 생성
  • ex) pages/posts/first-post.js
  • http://localhost:3000/posts/first-post
export default function FirstPost() {  함수이름은 사용자 정의
    return <h1>First Post</h1>
}

links

social