Rspack.LightningcssLoaderOptions | Function | booleanRspack.LightningcssLoaderOptions | Function | booleanonly support rspackYou can configure builtin:lightningcss-loader through tools.lightningcssLoader.
Set tools.lightningcssLoader to true to enable Rsbuild's built-in lightningcss-loader:
export default {
tools: {
lightningcssLoader: true,
},
};At this time, the default configuration is as follows:
const defaultOptions = {
// use current browserslist config
targets: browserslist,
// minify is enabled when output.injectStyles is true and in production mode
minify: config.mode === 'production' && config.output.injectStyles,
};It should be noted that when lightningcss-loader is turned on, postcss-loader will be turned off by default.
The usage of this configuration item is exactly the same as that of Rsbuild. For detailed information, please refer to Rsbuild - tools.lightningcssLoader.