Lightning CSS is a high performance CSS parser, transformer and minifier written in Rust. It supports parsing and transforming many modern CSS features into syntax supported by target browsers, and also provides a better compression ratio.
Rspack provides a built-in builtin:lightningcss-loader, which is based on Lightning CSS to transform CSS. It can replace the postcss-loader and autoprefixer for CSS syntax downgrading, prefixing, and other functionalities, offering better performance.
Please note that Lightning CSS strictly requires standards-compliant CSS input. When non-standard CSS is processed by the builtin:lightningcss-loader, styles may be ignored or produce unexpected results (Undefined Behavior). To ensure that styles are correctly applied, avoid using non-standard CSS syntax or browser-specific proprietary syntax, and instead use standard CSS writing practices that conform to W3C specifications.
To use builtin:lightningcss-loader in your project, you need to configure it as follows.
import { rspack } from '@rspack/core'; export default { module: { rules: [ { test: /\.css$/, use: [ { loader: 'builtin:lightningcss-loader', options: { targets: 'ie 10', }, }, // ... other loaders ], }, ], }, };You can use the LightningcssLoaderOptions type exported by @rspack/core to enable type hints:
export default { module: { rules: [ { test: /\.css$/, use: [ { loader: 'builtin:lightningcss-loader', /** @type {import('@rspack/core').LightningcssLoaderOptions} */ options: { targets: 'ie 10', }, }, // ... other loaders ], }, ], }, };Below are the configurations supported by builtin:lightningcss-loader. For detailed configuration, please refer to lightningcss document.
type LightningcssFeatureOptions = { nesting?: boolean; notSelectorList?: boolean; dirSelector?: boolean; langSelectorList?: boolean; isSelector?: boolean; textDecorationThicknessPercent?: boolean; mediaIntervalSyntax?: boolean; mediaRangeSyntax?: boolean; customMediaQueries?: boolean; clampFunction?: boolean; colorFunction?: boolean; oklabColors?: boolean; labColors?: boolean; p3Colors?: boolean; hexAlphaColors?: boolean; spaceSeparatedColorNotation?: boolean; fontFamilySystemUi?: boolean; doublePositionGradients?: boolean; vendorPrefixes?: boolean; logicalProperties?: boolean; selectors?: boolean; mediaQueries?: boolean; color?: boolean; }; type LightningcssLoaderOptions = { minify?: boolean; errorRecovery?: boolean; targets?: string[] | string; include?: LightningcssFeatureOptions; exclude?: LightningcssFeatureOptions; /** * @deprecated Use `drafts` instead. * This will be removed in the next major version. */ draft?: Drafts; drafts?: Drafts; nonStandard?: NonStandard; pseudoClasses?: PseudoClasses; unusedSymbols?: Set<String>; };string | string[]Browserslist query string.
Here are some examples of setting targets.
const loader = { loader: 'builtin:lightningcss-loader', /** @type {import('@rspack/core').LightningcssLoaderOptions} */ options: { targets: 'ie 10', }, };const loader = { loader: 'builtin:lightningcss-loader', /** @type {import('@rspack/core').LightningcssLoaderOptions} */ options: { targets: ['chrome >= 87', 'edge >= 88', '> 0.5%'], }, };booleantrueControl how Lightning CSS handles invalid CSS syntax.
By default, this option is enabled, meaning that when invalid CSS rules or declarations are parsed, Lightning CSS will skip them and emit warnings, while omitting them from the final output without interrupting the compilation process.
If you confirm that these warnings can be ignored, you can use ignoreWarnings to filter out the warnings from LightningCSS.
For example, ignore all warnings:
export default { ignoreWarnings: [ warning => /LightningCSS parse warning/.test(warning.message), ], };You can also use regular expressions to ignore specific warnings.
errorRecoveryIf you set errorRecovery to false, Lightning CSS will throw a compilation error and interrupt the build process when parsing any invalid CSS syntax:
export default { module: { rules: [ { test: /\.css$/, use: [ { loader: 'builtin:lightningcss-loader', /** @type {import('@rspack/core').LightningcssLoaderOptions} */ options: { errorRecovery: false, }, }, ], }, ], }, };