diff --git a/apps/web/pages/api/social/og/image.tsx b/apps/web/pages/api/social/og/image.tsx index b3078fcb8b..b57cf8e13b 100644 --- a/apps/web/pages/api/social/og/image.tsx +++ b/apps/web/pages/api/social/og/image.tsx @@ -85,7 +85,10 @@ export default async function handler(req: NextApiRequest) { ogConfig ) as { body: Buffer }; - return new Response(img.body, { status: 200, headers: { "Content-Type": "image/png" } }); + return new Response(img.body, { + status: 200, + headers: { "Content-Type": "image/png", "cache-control": "max-age=86400" }, + }); } case "app": { const { name, description, slug } = appSchema.parse({