diff --git a/src/routes/rss.xml.js b/src/routes/rss.xml.js index 5829541..3cde28b 100644 --- a/src/routes/rss.xml.js +++ b/src/routes/rss.xml.js @@ -25,6 +25,8 @@ export async function get(req, res) }); } - res.writeHead(200); + res.writeHead(200, { + 'Content-Type': 'application/rss+xml' + }); res.end(feed.xml()); }