I import the css file in the project, but it doesn’t take effect. What configuration needs to be done
The webpack-main.config.js file configuration is as follows
module: {
rules: [
.......,
{
test: /\.css$/,
use: ['style-loader',{
loader: 'css-loader',
options: {
modules: true,
}
}],
},
{
test: /\.less/,
use: ['less-loader'],
},
]
}
I import the css file in the project, but it doesn’t take effect. What configuration needs to be done
The webpack-main.config.js file configuration is as follows