-
resource-hints-webpack-plugin能自动为您的html文件插入资源提示
资源介绍
资源提示Webpack插件
这是插件的扩展。
它会自动将添加到html文件中,以。
安装
您必须在节点0.12.x或更高版本上运行webpack
使用npm安装插件:
$ npm install --save-dev resource-hints-webpack-plugin
用yarn安装插件:
$ yarn add --dev resource-hints-webpack-plugin
基本用法
加载插件
const ResourceHintWebpackPlugin = require ( 'resource-hints-webpack-plugin' ) ;
并将其添加到您的webpack配置中,如下所示:
plugins: [
new HtmlWebpackPlugin ( ) ,
new ResourceHintWebpackPlugin ( )
]