The volume of app.css after vue-cli packaging is too large, how can this be solved?

the project is built using vue-cli, but the packaged app.css file is 1.22m. How can this be optimized?
Baidu mainly found the optimization of vendor.js, but did not find the optimization of css. For advice, thank you

clipboard.png

Oct.14,2021

app.js is also very large. Do you use components to load asynchronously
if you have multiple uses using scoped style, build configuration allChunks turn off, do not merge to app.css

new ExtractTextPlugin({
  ...
  // Setting the following option to `false` will not extract CSS from codesplit chunks.
  // Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
  allChunks: false,
})

to split, you can use dll in webpack to do partial segmentation, such as public css files of third parties, etc. Then the plug-in mini-css-extract-plugin can be used to extract the css files of their respective modules (if webpack4 is used), and the webpack3 can be converted to extract-text-webpack-plugin

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