Skip to content

Cheatsheet

Description

Next.js commands and notes

Commands

Action Command
New Next.js App npx create-next-app@latest
Dev Svr npm run dev

Basic App Stru

app/
  favicon.ico
  global.css
  page.tsx     # /
  layout.tsx
  docs/
    page.tsx   # /docs
    layout.tsx
    section1/
      page.tsx # /docs/section1

Comments