From 04dbe5f7414226c5ca769d1169b0458aa76e5ed9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 29 Dec 2023 17:22:04 +0100 Subject: [PATCH] :bug: Fix exception on manifest reading on release build --- frontend/gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 88e0cdcb6..eee619276 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -146,8 +146,8 @@ function readLocales() { function readManifest() { try { - const path = __dirname + "/resources/public/js/manifest.json"; - const content = JSON.parse(fs.readFileSync(path, { encoding: "utf8" })); + const manifestPath = path.resolve("resources/public/js/manifest.json"); + const content = JSON.parse(fs.readFileSync(manifestPath, { encoding: "utf8" })); const index = { config: "js/config.js?ts=" + Date.now(), @@ -160,7 +160,7 @@ function readManifest() { return index; } catch (e) { - console.error("Error on reading manifest, using default."); + console.error("Error on reading manifest, using default.", e); return { config: "js/config.js", polyfills: "js/polyfills.js",