We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0246597 commit 90a3f41Copy full SHA for 90a3f41
src/routes/og/+server.ts
@@ -69,10 +69,10 @@ export const GET: RequestHandler = async ({ url }) => {
69
bodyData = new Uint8Array(png);
70
}
71
72
- return new Response(bodyData, {
73
- headers: {
74
- "Content-Type": "image/png",
75
- "Cache-Control": "public, max-age=31536000, immutable"
76
- }
77
- });
+ return new Response(bodyData, {
+ headers: {
+ "Content-Type": "image/png",
+ "Cache-Control": "public, max-age=31536000, immutable"
+ }
+ });
78
};
0 commit comments