Skip to content

Instantly share code, notes, and snippets.

@JiLiZART
Created May 18, 2016 09:28
Show Gist options
  • Save JiLiZART/2931a7e3fed3932d6e33ab51933e1486 to your computer and use it in GitHub Desktop.
Save JiLiZART/2931a7e3fed3932d6e33ab51933e1486 to your computer and use it in GitHub Desktop.
var precss = require('precss');
var autoprefixer = require('autoprefixer');
var sorting = require('postcss-sorting'); // !
module.exports = {
module: {
loaders: [
{
test: /\.css$/,
loader: "style-loader!css-loader!postcss-loader"
}
]
},
postcss: function () {
return [precss, autoprefixer, sorting]; // !
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment