我不习惯使用Webpack处理多个html文件,而且我想知道如何将给定脚本附加到给定html页面,因为我不想加载整个包。我的应用程序每一页中的js。
我正在使用HtmlWebpackPlugin,我的webpack.config.js看起来像这样:
plugins: [
new HtmlWebpackPlugin({
filename: './index.html',
template: './src/index.html'
}),
new HtmlWebpackPlugin({
filename: './page2.html',
template: './src/page2.html'
})
]
任何建议将不胜感激!