oht
2018-08-08 11:51
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
entry: {
main: "./src/scripts/index.js",
},
output: {
path: path.resolve(__dirname, "./dist/js"),
filename: '[name]-[chunkhash].js',
},
plugins: [
new HtmlWebpackPlugin()
]
}
请看命令
// 增加stats的配置就可以了 module.exports = { // 其他配置 stats: { children: false } }
我也遇到了这个报错。
后来发现自己是package.json里边script配置写错了,我写成 "build":"webpack webpack.config.js"
后来改成 webpack --config webpack.config.js就没有这个错误了。
然后呢?就没有下文了?没人解决吗
webpack 4升级后版本引起的问题
没有index.html页面,你需要建一个index.html页面,插件是以index.html为模板,来生成html文件的
webpack深入与实战
86561 学习 · 721 问题
相似问题