用途说明
()
webpack.config.js配置
|
案例
|
山峰永不相遇,而人人却处处相逢。
S3Plugin ()
Uploads your content to s3. Can also run your html files through cdnizer to change the url to match
|
|
|
HtmlWebpackPlugin (自动生成html插件)
Generates a solid base html page for your web application with all your webpack generated css and js files built in. Supports custom templates, favicon, html-minifications and more:
|
|
|
|
|
|
NoErrorsPlugin (不显示错误插件)
When there are errors while compiling this plugin skips the emitting phase (and recording phase), so there are no assets emitted that include errors. The emitted flag in the stats is false for all assets. If you are using the CLI, the webpack process will not exit with an error code by enabling this plugin. If you want webpack to “fail” when using the CLI, please check out the bail option.
|
|
|
ExtendedAPIPlugin ()
Adds useful free vars to the bundle.
__webpack_hash__
The hash of the compilation available as free var.
WARNING: Don’t combine it with the
HotModuleReplacementPlugin
. It would break and you don’t need it as theHotModuleReplacementPlugin
export the same stuff.
|
|
|
HotModuleReplacementPlugin (模块热替换插件)
模块热替换,如果不在dev-server模式下,需要记录数据,recordPath,生成每个模块的热更新模块
|
|