import { ImageResponse } from '@vercel/og' export const config = { runtime: 'experimental-edge', } export default function handler() { return new ImageResponse( (
Hello world!
), { width: 1200, height: 600, } ) }