Next.js Commands Cheat Sheet - 2024.

  • Posted on July 21, 2024
  • Next.js
  • By MmantraTech
  • 170 Views
Red Black Minimalist Cheat With The Letter Logo  (1)-xeFuSgfVdo.png

Cheat sheet for common Next.js commands:

Project Setup

  1. Create a New Project:

    • npx create-next-app@latest my-next-app
    • yarn create next-app my-next-app
    • pnpm create next-app my-next-app

Development

  1. Run Development Server:

    • npm run dev
    • yarn dev
    • pnpm dev

Build and Production

  1. Build for Production:

    • npm run build
    • yarn build
    • pnpm build
  2. Start Production Server:

    • npm run start
    • yarn start
    • pnpm start
  3. Export Static Pages:

    • npm run export
    • yarn export
    • pnpm export

 

Author
No Image
Admin
MmantraTech

Mmantra Tech is a online platform that provides knowledge (in the form of blog and articles) into a wide range of subjects .

You May Also Like

Write a Response