From f90856808b0cf54609fa6c4b7e064b8001513ac1 Mon Sep 17 00:00:00 2001 From: Felix Wiedenbach Date: Tue, 5 Jan 2021 19:39:31 +0100 Subject: [PATCH] fix config file path --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index fc7433bd..2622b659 100644 --- a/js/app.js +++ b/js/app.js @@ -60,7 +60,7 @@ function App() { // For this check proposed to TestSuite // https://forum.magicmirror.builders/topic/1456/test-suite-for-magicmirror/8 - const configFilename = path.resolve(global.configuration_file || `${global.root_path}/config/config`); + const configFilename = path.resolve(global.configuration_file || `${global.root_path}/config/config.js`); try { fs.accessSync(configFilename, fs.F_OK);