CSS Modules allows us to write CSS code in a modular way, and these styles can be imported and used in JavaScript files. Using CSS Modules can automatically generate unique class names, isolate styles between different modules, and avoid class name conflicts.
Rsbuild supports CSS Modules by default, you don't need to add additional configuration. Our convention is to use the [name].module.css
filename to enable CSS Modules.
The following style files are considered CSS Modules:
*.module.scss
*.module.less
*.module.css
By default, only files ending with *.module.css
are recognized as CSS Modules.
If you want to treat other CSS files as CSS Modules as well, you can achieve this by configuring output.cssModules.auto.
For example:
After this configuration, the following two files will be recognized as CSS Modules:
Customizing the class names generated by CSS Modules is also a commonly used function, you can use output.cssModules.localIdentName to configure it.
If you need to customize other configs of CSS Modules, you can set them via output.cssModules.
When you import CSS Modules in TypeScript code, TypeScript may prompt that the module is missing a type definition:
To fix this, you need to add a type declaration file for the CSS Modules, please create a src/env.d.ts
file, and add the corresponding type declaration.
@rsbuild/core
package is installed, you can directly reference the type declarations provided by @rsbuild/core
:After adding the type declaration, if the type error still exists, you can try to restart the current IDE, or adjust the directory where env.d.ts
is located, making sure the TypeScript can correctly identify the type definition.
For example, there are two files src/index.ts
and src/index.module.scss
under a certain folder:
After executing the build, the src/index.module.scss.d.ts
type declaration file will be automatically generated:
Then open the src/index.ts
file again, you will see that the styles
object already has a exact type.
In the above example, src/index.module.scss.d.ts
is generated by compilation, you can choose to commit them to the Git repository, or you can choose to ignore them in the .gitignore
file:
In addition, if the generated code causes ESLint to report errors, you can also add the above configuration to the .eslintignore
file.