css-treeshaking-loader
v1.1.1
Published
a webpack loader to shake unused css code.
Downloads
4
Maintainers
Readme
css-treeshaking-loader
a webpack loader to shake unused css code
how to use
npm install css-treeshaking-loader -D
config it in your webpack config file
const webpack = require("webpack");
const CssTreeShakingPlugin = require("css-treeshaking-loader")
module.exports = {
plugins: [
new CssTreeShakingPlugin({}),
...
]
};