From ce7bcef0d8daf32b05da8e0e3a86ef1080654ad3 Mon Sep 17 00:00:00 2001 From: Nuno Santos Date: Tue, 11 Jun 2019 10:18:43 +0200 Subject: [PATCH] Bugfix for config.json not being read. --- app/server/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/server/app.js b/app/server/app.js index 939618b..3cbce01 100644 --- a/app/server/app.js +++ b/app/server/app.js @@ -2,6 +2,7 @@ /* jshint esversion: 6, asi: true, node: true */ // app.js +var fs = require('fs') var path = require('path') var nodeRoot = path.dirname(require.main.filename) var configPath = path.join(nodeRoot, 'config.json')