/// Configuration settings that can be adjusted and passed to a minification function to change the
/// minification approach.
#[derive(Default)]pubstructCfg{/// If enabled, JavaScript in `<script>` tags are minified using
/// [minify-js](https://github.com/wilsonzlin/minify-js).
////// Only `<script>` tags with a valid or no
/// [MIME type](https://mimesniff.spec.whatwg.org/#javascript-mime-type) is considered to
/// contain JavaScript, as per the specification.
pubminify_js:bool,
/// If enabled, CSS in `<style>` tags are minified.
pubminify_css:bool,
}implCfg{pubfnnew()-> Cfg{Cfg::default()}}