Rspack.LightningcssLoaderOptions | Function | booleanYou can set the options for builtin:lightningcss-loader through tools.lightningcssLoader.
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.
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:
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.