encre-css 0.20.1

A TailwindCSS-compatible utility-first CSS generation library written in Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::{config::Config, Preflight};

pub(crate) fn base_config() -> Config {
    // Disable the preflight to simplify test assertions
    Config {
        preflight: Preflight::None,
        ..Default::default()
    }
}