Returning JSON

This commit is contained in:
olaven 2023-03-16 22:57:16 +01:00
parent d0031903c2
commit 418fdcd25e
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export const handler = async (req: Request, _ctx: HandlerContext): Promise<Respo
return new Response(JSON.stringify(body), { return new Response(JSON.stringify(body), {
headers: { headers: {
"Content-Type": "application/json+chapters" "Content-Type": "application/json"
} }
}); });
}; };