don't always minify when rendering html
This commit is contained in:
parent
45b2de54fb
commit
f368e57d7f
1 changed files with 1 additions and 10 deletions
|
@ -1,14 +1,5 @@
|
|||
use askama::DynTemplate;
|
||||
use minify_html::{minify, Cfg};
|
||||
|
||||
pub fn render_html(template: &dyn DynTemplate) -> String {
|
||||
let data = template.dyn_render().unwrap();
|
||||
|
||||
// we just minify before sending to the client,
|
||||
// we need to find a way to pre-minify static pages to the dist folder,
|
||||
// maybe in release mode? to make debugging easier
|
||||
// from https://git.mylloon.fr/Anri/mylloon.fr/issues/15
|
||||
|
||||
let cfg = Cfg::spec_compliant();
|
||||
String::from_utf8(minify(data.as_bytes(), &cfg)).unwrap()
|
||||
template.dyn_render().unwrap()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue