Use Less as the CSS preprocessor, implemented based on less-loader.
You can install the plugin using the following command:
You can register the plugin in the rsbuild.config.ts file:
After registering the plugin, you can import *.less or *.module.less files into the code without adding other configs.
If you need to customize the compilation behavior of Less, you can use the following configs.
You can modify the config of less-loader via lessLoaderOptions.
Object | FunctionIf lessLoaderOptions is an object, it is merged with the default config through Object.assign in a shallow way. It should be noted that lessOptions is merged through deepMerge in a deep way.
If lessLoaderOptions is a function, the default config is passed as the first parameter, which can be directly modified or returned as the final result.
undefinedExclude some .less files, they will not be transformed by less-loader.
For example:
In some scenarios, if you need to use a specific version of Less instead of the built-in Less v4 in Rsbuild, you can install the desired Less version in your project and set it up using the implementation option of the less-loader.