ERROR in chunk vendor [initial] 怎么解决的
ERROR in chunk vendor [initial]
bundle.59d56715.js
Conflict: Multiple assets emit to the same filename bundle.59d56715.js
ERROR in chunk vendor [initial]
bundle.59d56715.js
Conflict: Multiple assets emit to the same filename bundle.59d56715.js
2019-07-14
翻译过来是多入口不能指定出口文件中同样的filename名称
output 的filename 改成 [name]
output: { path: __dirname + 'dist',//出口路径 filename: '[name].js'//出口名称 }
可以参考下我的代码:
举报