首先,使用 webpack.DllPlugin 生成 vendor.dll.js。
其次,使用 html-webpack-include-assets-plugin 将 vendor.dll.js 插入到由 HtmlWebpackPlugin 生成的 html 中。像这样:
new HtmlWebpackPlugin(),
new webpack.DllReferencePlugin({
context: __dirname,
manifest: require('./vendor-manifest.json')
})
new HtmlWebpackIncludeAssetsPlugin({
assets: ['vendor.dll.js'],
hash: true,
append: false,
})
问题:
如何在不使用 html-webpack-plugin 的情况下将 vendor.dll.js 插入现有的 html?
谢谢