Package Exports
- webpack-css-treeshaking-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (webpack-css-treeshaking-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
webpack-css-treeshaking-plugin
a webpack plugin to shake unused css code
how to use
npm install webpack-css-treeshaking-plugin -D
config it in your webpack config file
const webpack = require("webpack");
const CssTreeShakingPlugin = require("wepack-css-treeshaking-plugin")
module.exports = {
plugins: [
new CssTreeShakingPlugin({}),
...
]
};