@nx/webpack - Generators
The @nx/webpack plugin provides various generators to help you create and configure webpack projects within your Nx workspace. Below is a complete reference for all available generators and their options.
convert-config-to-webpack-plugin
Convert existing Webpack project(s) using @nx/webpack:webpack executor that uses withNx to use NxAppWebpackPlugin. Defaults to migrating all projects. Pass ‘—project’ to migrate only one target.
Usage:
nx generate @nx/webpack:convert-config-to-webpack-plugin [options]Options
| Option | Type | Description | Default | 
|---|---|---|---|
| project | string | The project to convert from using the @nx/webpack:webpackexecutor andwithNxplugin to useNxAppWebpackPlugin. | |
| skipFormat | boolean | Whether to format files at the end of the migration. | false | 
convert-to-inferred
Convert existing Webpack project(s) using @nx/webpack:wepack executor to use @nx/webpack/plugin.
Usage:
nx generate @nx/webpack:convert-to-inferred [options]Options
| Option | Type | Description | Default | 
|---|---|---|---|
| project | string | The project to convert from using the @nx/webpack:webpackexecutor to use@nx/webpack/plugin. If not provided, all projects using the@nx/webpack:webpackexecutor will be converted. | |
| skipFormat | boolean | Whether to format files. | false | 
 ## Getting Help
 You can get help for any generator by adding the `--help` flag:
 ```bash nx generate @nx/webpack:<generator> --help ```