fix: index.html 헤더 링크 추가 및 tester.html CSV 한글 깨짐 방지(BOM 추가)
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 1m49s

This commit is contained in:
jade
2026-08-05 00:01:59 +09:00
parent 96e308aefb
commit b9f98e89ce
2 changed files with 3 additions and 1 deletions

View File

@@ -331,7 +331,7 @@
csvContent += `${category},${name},${status},${latency},${payloadStr},${responseStr}\n`;
});
const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });
const blob = new Blob(['\uFEFF' + csvContent], { type: 'text/csv;charset=utf-8;' });
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.setAttribute("href", url);