想要新添加的.html文件生效得改build/webpack.dev.conf.js
文件的plugins
部分
module.exports = merge(baseWebpackConfig, {
module: {
loaders: utils.styleLoaders()
},
// eval-source-map is faster for development
devtool: ‘#eval-source-map‘,
plugins: [
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: ‘index.html‘,
template: ‘index.html‘,
inject: true
}),
new HtmlWebpackPlugin({
filename: ‘另一个.html‘,
template: ‘另一个模板.html‘,
inject: true
})
]
})
时间: 2024-10-22 04:46:03