Here is the webpack.config.js
module: {
rules: [
{
// LESS-CSS Loader
test: /\.(le|c)ss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
},
require.resolve('css-loader'),
require.resolve('less-loader')
]
}
]
}
The css files will also be processed by less loader so will it cause an overhead? I just want to know that will the existing approach cause any overhead or it doesn't have any impact on performance.