JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q60519F
  • License MIT

a webpack loader to shake unused css code.

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({}),
    ...
  ]
};