Created
February 23, 2018 09:49
-
-
Save ixahmedxi/7d3c25d98bc3091bf1843a2250ab9bcf to your computer and use it in GitHub Desktop.
Webpack sass compiling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
entry: './src/index.js', | |
output: { | |
filename: 'bundle.js', | |
path: require('path').resolve(__dirname, 'dist') | |
}, | |
module: { | |
rules: [ | |
{ | |
test: /\.scss$/, | |
loader: 'sass-loader' | |
} | |
] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment