fix
All checks were successful
Build And Deploy Main / build-and-deploy (push) Successful in 29s

This commit is contained in:
2026-03-12 13:49:15 -04:00
parent 66b8c3011a
commit 84dacab3a2
3 changed files with 15 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ const rootDir = path.resolve(__dirname, "..");
const sourceDir = path.join(rootDir, "public", "upload");
const targetDir = path.join(rootDir, "build", "upload");
const templates = ["pdf_templete1.pdf", "pdf_templete2.pdf", "pdf_templete3.pdf"];
const unicodeFontFiles = ["NotoSansSC-VF.ttf", "NotoSansCJKsc-Regular.otf"];
const unicodeFontFiles = ["NotoSansSC-Regular.ttf", "NotoSansSC-VF.ttf", "NotoSansCJKsc-Regular.otf"];
if (!fs.existsSync(targetDir)) {
fs.mkdirSync(targetDir, { recursive: true });