9 lines
222 B
TypeScript
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}`);
|
|
});
|