Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PresetMiniOptions

interface PresetMiniOptions extends PresetOptions {
arbitraryVariants?: boolean;
attributifyPseudo?: boolean;
dark?: "class" | "media" | DarkModeSelectors;
prefix?: string | string[];
preflight?: boolean;
variablePrefix?: string;
}

§Extends

§Properties

§
arbitraryVariants?: boolean
[src]

Enable arbitrary variants, for example <div class="[&>*]:m-1 [&[open]]:p-2"></div>.

Disable this might slightly improve the performance.

§
attributifyPseudo?: boolean
[src]

Generate pseudo selector as [group=""] instead of .group

§
dark?: "class" | "media" | DarkModeSelectors
[src]

Dark mode options

§
prefix?: string | string[]
[src]

Utils prefix

§
preflight?: boolean
[src]

Generate preflight

§
variablePrefix?: string
[src]

Prefix for CSS variables.