(mut self, minify_css: bool)
| 378 | /// Override whether trailing semicolons and spaces between properties and values should be removed. |
| 379 | #[must_use] |
| 380 | pub fn minify_css(mut self, minify_css: bool) -> Self { |
| 381 | self.minify_css = minify_css; |
| 382 | self |
| 383 | } |
| 384 | |
| 385 | /// Set base URL that will be used for loading external stylesheets via relative URLs. |
| 386 | #[must_use] |
no outgoing calls