animate/webGl/my-threejs-test/node_modules/htmlnano/lib/presets/max.mjs

21 lines
467 B
JavaScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
import safePreset from './safe.mjs';
/**
* Maximal minification (might break some pages)
*/
export default { ...safePreset,
collapseWhitespace: 'all',
removeComments: 'all',
removeAttributeQuotes: true,
removeRedundantAttributes: true,
mergeScripts: true,
mergeStyles: true,
removeUnusedCss: {},
minifyCss: {
preset: 'default',
},
minifySvg: {},
minifyConditionalComments: true,
removeOptionalTags: true,
};