Polyfills Type — tailwindcss Architecture
Architecture documentation for the Polyfills type/interface in index.ts from the tailwindcss codebase.
Entity Profile
Source Code
packages/tailwindcss/src/index.ts lines 41–52
export const enum Polyfills {
None = 0,
// Control if fallbacks for `@property` rules are emitted
AtProperty = 1 << 0,
// Control if `color-mix(…)` fallbacks are inserted
ColorMix = 1 << 1,
// Enable all
All = AtProperty | ColorMix,
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free