1. 程式人生 > >webpack打包踩的坑

webpack打包踩的坑

打包的時候一直包這個錯誤

Child html-webpack-plugin for "..\index.html":
1 asset
Entrypoint html-webpack-plugin for "..\index.html" = ../index.html
Child mini-css-extract-plugin node_modules/css-loader/index.js!node_modules/ivie
w/dist/styles/iview.css:
Entrypoint mini-css-extract-plugin = *

解決辦法:在webpack.config.js檔案加上

stats: {
// One of the two if I remember right
entrypoints: false,
children: false
},