@nrwl/web:static-config
Add a new serve target to serve a build apps static files. This allows for faster serving of the static build files by reusing the case. Helpful when reserving the app over and over again like in e2e tests.
Add a new serve target to serve a build apps static files. This allows for faster serving of the static build files by reusing the case. Helpful when reserving the app over and over again like in e2e tests.
nx generate static-config ...
By default, Nx will search for static-config
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/web:static-config ...
Show what will be generated without writing to disk:
nx g static-config ... --dry-run
Name of the build target to serve
Path to the directory of the built files. This is only needed if buildTarget doesn't specify an outputPath executor option.
serve-static
Name of the serve target to add. Defaults to 'serve-static'.