Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jsartisan/b05609664d68e25cc7a6215e6f163d0d to your computer and use it in GitHub Desktop.
Save jsartisan/b05609664d68e25cc7a6215e6f163d0d to your computer and use it in GitHub Desktop.
Inline and Minify CSS
// ...
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const StyleExtHtmlWebpackPlugin = require('style-ext-html-webpack-plugin');
// ...
const config = {
// ...
plugins: [
new StyleExtHtmlWebpackPlugin({
minify: isDevelopment === false,
}),
new ExtractTextPlugin('[name].css'),
// ...
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment