nuxt generate

Source
Pre-renders every route of the application and stores the result in plain HTML files.
Terminal
npx nuxt generate [ROOTDIR] [--cwd=<directory>] [--logLevel=<silent|info|verbose>] [--target=<target>] [--dotenv=<path>...] [--envName=<environment>] [-e, --extends=<layer-name>...] [--profile=<verbose>]

The generate command pre-renders every route of your application and stores the result in plain HTML files that you can deploy on any static hosting services. The command triggers the nuxt build command with the prerender argument set to true

Arguments

ArgumentDescription
ROOTDIRThe root directory of your Nuxt project (default: .)

Options

OptionDefaultDescription
--cwd=<directory>Specify the root directory of your Nuxt project
--logLevel=<silent|info|verbose>Specify build-time log level
--target=<target>Deploy target for the configured server builder (e.g. node-server, vercel, netlify)
--dotenv=<path>...Path to .env file to load, relative to the root directory. Can be repeated, with later files taking precedence.
--envName=<environment>The environment to use when resolving configuration overrides (default is production when building, and development when running the dev server)
-e, --extends=<layer-name>...Extend from a Nuxt layer
--profile=<verbose>Profile performance, writing a V8 CPU profile and a JSON report on exit. Use --profile=verbose for a full console report.
Read more about pre-rendering and static hosting.