1
2
3
4
5
6
export let png = (content) =>
new Response(content, {
headers: {
"Content-Type": "img/png",
},
});