소스 검색

chore: fix default value for webroot

C4illin 8 달 전
부모
커밋
7d1db72cf5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/index.tsx

+ 1 - 1
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,