mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-03 22:54:03 +01:00
15 lines
373 B
JavaScript
15 lines
373 B
JavaScript
/**
|
|
* A Webpack plugin to minify HTML files.
|
|
* Docs: https://github.com/Maxwellewxam/html-minifier-webpack-plugin
|
|
*/
|
|
|
|
import HtmlMinifierWebpackPlugin from "html-minifier-webpack-plugin"
|
|
|
|
const devMode = process.env.NODE_ENV !== "production"
|
|
|
|
const config = {
|
|
collapseWhitespace: devMode ? true : false,
|
|
}
|
|
|
|
export default () => new HtmlMinifierWebpackPlugin(config)
|