diff --git a/src/content/plugins/index.md b/src/content/plugins/index.md index 569c48b51742..1c73e08c2742 100644 --- a/src/content/plugins/index.md +++ b/src/content/plugins/index.md @@ -8,6 +8,7 @@ contributors: - eko3alpha - refactorized - byzyk + - prondubuisi --- webpack has a rich plugin interface. Most of the features within webpack itself use this plugin interface. This makes webpack __flexible__. @@ -32,6 +33,7 @@ Name | Description [`LoaderOptionsPlugin`](/plugins/loader-options-plugin) | Used for migrating from webpack 1 to 2 [`MinChunkSizePlugin`](/plugins/min-chunk-size-plugin) | Keep chunk size above the specified limit [`MiniCssExtractPlugin`](/plugins/mini-css-extract-plugin) | creates a CSS file per JS file which requires CSS +[`NamedModulesPlugin`](/plugins/named-modules-webpack-plugin) | Displays relative path of modules when HMR is enabled [`NoEmitOnErrorsPlugin`](/configuration/optimization/#optimization-noemitonerrors) | Skip the emitting phase when there are compilation errors [`NormalModuleReplacementPlugin`](/plugins/normal-module-replacement-plugin) | Replace resource(s) that matches a regexp [`NpmInstallWebpackPlugin`](/plugins/npm-install-webpack-plugin) | Auto-install missing dependencies during development diff --git a/src/content/plugins/named-modules-plugin.md b/src/content/plugins/named-modules-plugin.md new file mode 100644 index 000000000000..eb7826554acf --- /dev/null +++ b/src/content/plugins/named-modules-plugin.md @@ -0,0 +1,7 @@ +--- +title: NamedModulesPlugin +contributors: + - prondubuisi +--- + +The `NamedModulesPlugin` displays the relative path of modules when [`HotModuleReplacement`](/plugins/hot-module-replacement-plugin/) is enabled. This makes for readability. \ No newline at end of file