From ab93f1485536dd92edea0395508b0721b6869cec Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Mon, 11 Apr 2016 20:22:22 -0700 Subject: [PATCH] app.js not used by Gatsby any longer --- app.js | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 app.js diff --git a/app.js b/app.js deleted file mode 100644 index 07fd802..0000000 --- a/app.js +++ /dev/null @@ -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) -}