Answers for "build nextjs"

0

next js build command

...
"scripts": {
    "build": "next build",
    "start": "next start",
    "export": "next export"
}
...


// build command

$ npm run build 
$ npm run start
Posted by: Guest on January-03-2022
0

next js create app

npx create-next-app nextjs-app --use-npm 
cd nextjs-app
npm run dev
Posted by: Guest on October-05-2021
3

create next js app

npm init next-app nextjs-blog --example "https://github.com/vercel/next-learn-starter/tree/master/learn-starter"
Posted by: Guest on June-19-2020

Browse Popular Code Answers by Language