Update webpack config example to include module sass files

This commit is contained in:
nad182 2020-07-14 23:13:07 -04:00 committed by GitHub
parent 6d48bdd4cd
commit 798a3c52be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,10 +186,20 @@ module.exports = {
// Make whatever fine-grained changes you need
config.module.rules.push({
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
include: path.resolve(__dirname, '../'),
});
test: /.scss$/,
loader: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: true, // to support files with '.module.scss' extenstions.
},
},
{
loader: 'sass-loader',
},
],
})
// Return the altered config
return config;