tools.cssLoader
- Type:
Object | Function
Rsbuild uses css-loader by default to handle CSS resources. You can modify the options of css-loader through tools.cssLoader.
Tip
To modify the options related to CSS Modules, it is recommended to use the output.cssModules config first.
Object type
When this value is an Object, it is merged with the default config via deep merge. For example:
rsbuild.config.ts
Function type
When the value is a Function, the default config is passed in as the first parameter. You can modify the config object directly, or return an object as the final config. For example:
rsbuild.config.ts

