Files
infra/scripts.ts
2026-05-05 00:26:41 +02:00

9 lines
222 B
TypeScript

// check-headers.ts
const domain = "https://jellyfin.milasholsting.dk";
const resp = await fetch(domain);
console.log("--- Header Check ---");
resp.headers.forEach((value, key) => {
console.log(`${key}: ${value}`);
});