Forrest logo
back to context overview

next

List of commands for next:

  • next:tldr:2447a next: Start the compiled application and listen on a specific port.
    $ next start --port ${port}
    try on your machine
    explain this command
  • next:tldr:65948 next: Start the compiled application in production mode.
    $ next start
    try on your machine
    explain this command
  • next:tldr:6fe93 next: Start the current application and listen on a specific port.
    $ next dev --port ${port}
    try on your machine
    explain this command
  • next:tldr:72c78 next: Start the current application in development mode.
    $ next dev
    try on your machine
    explain this command
  • next:tldr:8d5d8 next: Display the Next.js telemetry status.
    $ next telemetry
    try on your machine
    explain this command
  • next:tldr:98a07 next: Export the current application to static HTML pages.
    $ next export
    try on your machine
    explain this command
  • next:tldr:d22ed next: Build the current application optimized for production.
    $ next build
    try on your machine
    explain this command
back to context overview