Created
May 18, 2016 09:28
-
-
Save JiLiZART/2931a7e3fed3932d6e33ab51933e1486 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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