the .styl file was not extracted after webpack4 introduced stylus and css, build index.js import . index.styl app.[hash:8].css import . main.css main.css webpack.config.prod.js module.exports = merge(webpackCommon, { module: { ...
question: when using webpack plug-in extract-text-webpack-plugin to separate multi-entry css styles, only one css file (main.css) is generated, and the rest of the entry styles are inserted into html s header. Now what should I do if I want to insert t...