Next CLI
// Start the application in development mode (hot-code reloading, error reporting, etc)
next dev
next dev mydir -p 8080
// build application in current directory's .next folder
next build
next build mydir
// start in production mode (must run 'next build' before)
next start
next start mydir -p 8080
// Export the application for production deployment
next export
// Start the application in development mode (hot-code reloading, error reporting, etc)
next dev
next dev mydir -p 8080
// build application in current directory's .next folder
next build
next build mydir
// start in production mode (must run 'next build' before)
next start
next start mydir -p 8080
// Export the application for production deployment
next export
// Start the application in development mode (hot-code reloading, error reporting, etc) next dev next dev mydir -p 8080 // build application in current directory's .next folder next build next build mydir // start in production mode (must run 'next build' before) next start next start mydir -p 8080 // Export the application for production deployment next export