@nx/webpack: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.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
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.
1nx generate convert-config-to-webpack-plugin ...
2
By default, Nx will search for convert-config-to-webpack-plugin
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/webpack:convert-config-to-webpack-plugin ...
2
Show what will be generated without writing to disk:
1nx g convert-config-to-webpack-plugin ... --dry-run
2
The project to convert from using the @nx/webpack:webpack
executor and withNx
plugin to use NxAppWebpackPlugin
.
false
Whether to format files at the end of the migration.