From b53a4e5bf8ff5a1457b503036205c8fe3173e71c Mon Sep 17 00:00:00 2001 From: James Long Date: Fri, 29 Apr 2022 10:51:06 -0400 Subject: [PATCH] Path fix --- load-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/load-config.js b/load-config.js index 9dd97e0..5e068a6 100644 --- a/load-config.js +++ b/load-config.js @@ -4,7 +4,7 @@ try { } catch (e) { let fs = require('fs'); let { join } = require('path'); - let root = fs.existsSync('/data') ? '/data' : '/'; + let root = fs.existsSync('/data') ? '/data' : './'; config = { mode: 'development',