app.js not used by Gatsby any longer

This commit is contained in:
Kyle Mathews 2016-04-11 20:22:22 -07:00
parent e746f17610
commit ab93f14855

10
app.js
View file

@ -1,10 +0,0 @@
exports.loadContext = function (callback) {
let context = require.context('./pages', true)
if (module.hot) {
module.hot.accept(context.id, () => {
context = require.context('./pages', true)
return callback(context)
})
}
return callback(context)
}