// 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}`); });