Compiling HTML code with webpack-dists-loader doesn't work?

use webpack-dists-loader to selectively package code, only JS will take effect, and HTML will also take effect as configured, but no error will be reported during packaging, but the corresponding effect will not be achieved.

JS configuration

  {
                test: /\.js$/,
                use: [
                    {
                        loader: "webpack-dists-loader",
                        options: {
                            debug: {
                                env: ["development", "test"],
                                tag: "debug"
                            },
                            online: {
                                env: ["production"],
                                tag: "online",
                                specials: {
                                    "gear": "gear"
                                }
                            }
                        }
                    },
                    {
                        loader: "babel-loader"
                    }
                ],
                include: [path.resolve("src"), path.resolve("node_modules/webpack-dev-server/client")]
            }

how to configure CSS, but not according to the above?

May.20,2022
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-1b384e0-2b64e.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-1b384e0-2b64e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?