tools.lightningcssLoader
- Type:
Rspack.LightningcssLoaderOptions | Function | boolean - Default:
You can set the options for builtin:lightningcss-loader through tools.lightningcssLoader.
Object type
When tools.lightningcssLoader is an object, it will be merged with the default configuration using Object.assign.
For example, you can disable the addition of vendor prefixes through tools.lightningcssLoader.exclude. In this case, you can use PostCSS's autoprefixer plugin to add vendor prefixes.
Function type
When tools.lightningcssLoader is a function, the default options will be passed in as the first parameter. You can directly modify this object or return a new object as the final options to be used. For example:
Disable loader
Set tools.lightningcssLoader to false to disable the built-in lightningcss-loader in Rsbuild:
Set tools.lightningcssLoader to false only disables the lightningcss-loader. If you need to disable the full functionality of Lightning CSS, please refer to Disabling Lightning CSS.

