Skip to content

Instantly share code, notes, and snippets.

@harshaktg
Last active September 8, 2020 11:19
Show Gist options
  • Select an option

  • Save harshaktg/4709dcff553c7c22924002af0a129ab1 to your computer and use it in GitHub Desktop.

Select an option

Save harshaktg/4709dcff553c7c22924002af0a129ab1 to your computer and use it in GitHub Desktop.
Webpack scss config
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader']
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment