upgrade to Gatsby 0.11

This commit is contained in:
wpioneer
2016-06-03 02:32:38 +03:00
parent b00aff65ad
commit 05ee70daab
59 changed files with 795 additions and 699 deletions

13
gatsby-node.js Normal file
View File

@@ -0,0 +1,13 @@
var rucksack = require('rucksack-css')
var lost = require("lost")
exports.modifyWebpackConfig = function(config, env) {
config.merge({
postcss: [
lost(),
rucksack()
]
})
return config
};