Skip to content

Instantly share code, notes, and snippets.

@icebob
Created August 8, 2016 11:51
Show Gist options
  • Save icebob/b7ebfe9ca4494b380fb3fe2442e97f7f to your computer and use it in GitHub Desktop.
Save icebob/b7ebfe9ca4494b380fb3fe2442e97f7f to your computer and use it in GitHub Desktop.
...
var ExtractTextPlugin = require("extract-text-webpack-plugin");
...
module.exports = {
module: {
loaders: [
{ test: /\.css$/, loader: "style!css" },
{ test: /\.scss$/, loader: ExtractTextPlugin.extract('style-loader', ['css-loader', 'postcss-loader', 'sass-loader'])},
...
]
},
plugins: [
...
new ExtractTextPlugin('styles/style.css')
],
...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment