Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hindmost/6377bf5bbadaff168693bf59a5f1cf2d to your computer and use it in GitHub Desktop.
Save hindmost/6377bf5bbadaff168693bf59a5f1cf2d to your computer and use it in GitHub Desktop.
cra-browserext-boilerplate: webpack.config.js - html-webpack-plugin - origin
...
const HtmlWebpackPlugin = require('html-webpack-plugin');
...
plugins: [
new HtmlWebpackPlugin({
inject: true,
template: paths.appHtml,
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true,
},
}),
...
]
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment