[CSS] Purgecss to remove unused css
作者:互联网
Install Purgecss to remove unused CSS
npm install @fullhuman/postcss-purgecss --save-dev
Edit postcss.config.js
:
module.exports = {
plugins: [
require("tailwindcss"),
require("autoprefixer"),
process.env.NODE_ENV === "production" &&
require("@fullhuman/postcss-purgecss")({
// add all the html files
content: ["./src/**/*.vue", "./public/index.html"],
defaultExtractor: (content) => content.match(/[A-Za-z0-9-_:/]+/g) || [],
}),
],
};
Then run npm run build
, you will notice that the generate css file size down from 186602
lines to 600
lines.
标签:content,purgecss,fullhuman,require,Purgecss,unused,remove,postcss,css 来源: https://www.cnblogs.com/Answer1215/p/15415862.html