Webpack4 packages the css error of asynchronously loaded components

css error of asynchronously loaded components packaged by webpack4

I"ve tried allChunks:true, but I can"t parse it

.

related codes

const path = require ("path");
const ExtractTextPlugin = require ("extract-text-webpack-plugin");
module.exports = {

mode: "production",
devtool: "source-map",
entry: "./src/index.js",
output: {
    path: path.resolve(__dirname + "/dist"),
    filename: "index.js",
    chunkFilename:"[name].chunk.js",
    publicPath:"./dist/"
},
plugins: [
    new ExtractTextPlugin("style.css"),
],
module: {
    rules: [

        {
            test: /\.css$/,
            use: ExtractTextPlugin.extract({
                fallback: "style-loader",
                use: [{
                    loader: "css-loader",
                    options: {
                        minimize: true
                    }
                }]
            }),
        },

    ]
}

}

Apr.05,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3ff3c-34885.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3ff3c-34885.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?