From 7d1db72cf5eecedf3a2d00e85139ee71851ec00c Mon Sep 17 00:00:00 2001 From: C4illin Date: Wed, 6 Nov 2024 14:14:11 +0100 Subject: [PATCH] chore: fix default value for webroot --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 3250f5f..c609af2 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -37,7 +37,7 @@ const AUTO_DELETE_EVERY_N_HOURS = process.env.AUTO_DELETE_EVERY_N_HOURS ? Number(process.env.AUTO_DELETE_EVERY_N_HOURS) : 24; -const WEBROOT = process.env.WEBROOT ?? "/convertx"; +const WEBROOT = process.env.WEBROOT ?? ""; // fileNames: fileNames, // filesToConvert: fileNames.length,