script-ext-html-webpack-plugin npm 引入方式
时间: 2023-11-02 09:28:33 浏览: 124
webpack下实现动态引入文件方法
您可以使用以下命令将script-ext-html-webpack-plugin添加到您的项目中:
npm install script-ext-html-webpack-plugin
然后,在webpack配置文件中,您可以使用以下方式引入:
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin');
并在plugins数组中添加以下内容:
plugins: [
new ScriptExtHtmlWebpackPlugin({
defaultAttribute: 'defer'
})
]
这将使所有脚本都以defer属性引入。您可以根据需要进行更改。
阅读全文