Skip to content

Instantly share code, notes, and snippets.

@bd
Created March 10, 2018 19:29
Show Gist options
  • Save bd/d2c147eb1b008af4ce9642621367d8c8 to your computer and use it in GitHub Desktop.
Save bd/d2c147eb1b008af4ce9642621367d8c8 to your computer and use it in GitHub Desktop.
const sass = () => () => ({
module: {
rules: [
{
test: /\.(scss|sass)$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'sass-loader'},
],
},
],
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment