Skip to content

Instantly share code, notes, and snippets.

@tarunranka
Created September 29, 2017 18:00
Show Gist options
  • Save tarunranka/a3675d606ba6c4ca1ab62f7660f390dd to your computer and use it in GitHub Desktop.
Save tarunranka/a3675d606ba6c4ca1ab62f7660f390dd to your computer and use it in GitHub Desktop.
const ExtractTextPlugin = require("extract-text-webpack-plugin");
module: {
rules: [{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
use: ["css-loader", "sass-loader"]
})
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment