Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-28 00:20:19 +00:00
parent 5bf37ece1a
commit 2c0f4bfdb2
88 changed files with 330 additions and 253 deletions

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# next
> React framework that uses server-side rendering for building optimized web applications.
> More information: <https://nextjs.org/docs>.
> More information: <https://nextjs.org/docs/app/api-reference/cli/next>.
- Start the current application in development mode:
@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- Start the current application and listen on a specific port:
`next dev --port {{port}}`
`next dev {{[-p|--port]}} {{port}}`
- Build the current application optimized for production:
@@ -26,7 +26,7 @@ source: https://github.com/tldr-pages/tldr.git
- Start the compiled application and listen on a specific port:
`next start --port {{port}}`
`next start {{[-p|--port]}} {{port}}`
- Export the current application to static HTML pages:
@@ -38,4 +38,4 @@ source: https://github.com/tldr-pages/tldr.git
- Display help for a subcommand:
`next {{build|dev|export|start|telemetry}} --help`
`next {{build|dev|export|start|telemetry}} {{[-h|--help]}}`