Skip to content

Commit

Permalink
chore: fix default value for webroot
Browse files Browse the repository at this point in the history
  • Loading branch information
C4illin committed Nov 6, 2024
1 parent 36cb6cc commit 7d1db72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 7d1db72

Please sign in to comment.