From d733230901cb8f8e0c49f28f7d3238c16a7da467 Mon Sep 17 00:00:00 2001 From: Onja Date: Tue, 10 Oct 2023 16:42:50 +0300 Subject: [PATCH] Update basedir path in constants.js to resolve file path correctly --- src/config/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/constants.js b/src/config/constants.js index c568f8e..090dd10 100644 --- a/src/config/constants.js +++ b/src/config/constants.js @@ -1,5 +1,5 @@ const path = require('path'); module.exports = { - basedir: path.join(__dirname, '../'), + basedir: path.join(__dirname, '../../'), }; \ No newline at end of file