how to use npm run build in next js #14083
-
Hello guys i want to know in applications like react we use html output file to run frontend |
Beta Was this translation helpful? Give feedback.
Answered by
rafaelalmeidatk
Jun 11, 2020
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sromexs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
next build
will build your files for the next command which can benext start
ornext export
.next start
will start a Node.js server that will listen to requests and send your pages, this is the standard way to use Next.js since it has all the features.next export
is for Static HTML Export, it will output HTML files similar to whatcreate-react-app
does