run-postcss-after-compilation-webpack-plugin
v1.0.1
Published
Plugin used to run PostCSS on Webpack CSS output. Useful for applying the PostCSS processing on the bundled CSS instead of per-file.
Downloads
23
Maintainers
Readme
run-postcss-after-compilation-webpack-plugin
Plugin used to run PostCSS on Webpack CSS output. Useful for applying the PostCSS processing on the bundled CSS instead of per-file.
Works with Webpack (>= 4.0).
Install
npm install --save-dev run-postcss-after-compilation-webpack-plugin
Usage
You must pass the absolute path to the postcss.config.js
file to the plugin's constructor.
// webpack.config.js
const RunPostCSSAfterCompilationPlugin = require('run-postcss-after-compilation-webpack-plugin');
module.exports = {
plugins: {
new RunPostCSSAfterCompilationPlugin(path.resolve(__dirname, "postcss.config.js"))
}
}