Hello everyone! I'm currently delving into tutorials and articles on how to activate CSS Modules in React 16.13.1. It's clear that the first step is to run "npm run eject", which I've already completed. The next step involves modifying the "webpack.config.js" file, but mine appears to differ significantly from those provided online. Below is a snippet of my webpack.config.js file, so can someone advise me on which lines to add and where in order to enable CSS Modules? Feel free to ask if you require additional information.
test: cssRegex,
exclude: cssModuleRegex,
use: getStyleLoaders({
importLoaders: 1,
sourceMap: isEnvProduction && shouldUseSourceMap,
}),