打包的时候一直包这个错误
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
},
原文地址:https://www.cnblogs.com/me168/p/10013816.html
时间: 2024-10-05 08:44:16