From 33360cf5f6ac14292abd4cb1857460973b1b8407 Mon Sep 17 00:00:00 2001 From: potatodepaulo Date: Tue, 4 Jun 2019 17:27:26 -0700 Subject: [PATCH] remove .js from config --- get-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-config.js b/get-config.js index a77b293e..07c9d4db 100644 --- a/get-config.js +++ b/get-config.js @@ -1,6 +1,6 @@ module.exports = function getConfig() { - const configPath = process.cwd() + '/src/config.js'; + const configPath = process.cwd() + '/src/config'; try { return require(configPath)(process.env.NODE_ENV || 'development'); } catch (e) {