Initial implementation

This commit is contained in:
Nicolas Gallagher
2015-06-09 12:34:10 -07:00
parent e34820c11c
commit 90779f702a
47 changed files with 1341 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
var autoprefixer = require('autoprefixer-core');
module.exports = {
module: {
loaders: [
{
test: /\.css$/,
loader: 'style-loader!css-loader?localIdentName=[hash:base64:5]!postcss-loader'
},
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: { cacheDirectory: true }
}
]
},
postcss: [ autoprefixer ]
};