From a12e5dfd4cfa79eb939eb9ee75588fe1dcdc0ff7 Mon Sep 17 00:00:00 2001 From: Varmo <101868197+varmoh@users.noreply.github.com> Date: Tue, 15 Oct 2024 13:21:17 +0300 Subject: [PATCH] Update utils.js --- js/util/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/util/utils.js b/js/util/utils.js index 36e3508..06bb4ad 100644 --- a/js/util/utils.js +++ b/js/util/utils.js @@ -29,6 +29,7 @@ export const buildContentFilePath = (fileName) => { const normalizedPath = path .normalize(fileName) .replace(/^(\.\.(\/|\\|$))+/, ""); + console.log("normalizedPath", normalizedPath); return path.join(process.env.CONTENT_FOLDER || "data", normalizedPath); };