import { ImageResponse } from 'next/og' export const alt = 'Test OpenGraph Image' export const size = { width: 800, height: 600, } export const contentType = 'image/png' export default async function Image() { return new ImageResponse( (
OpenGraph Test Image
), { ...size, } ) }