import { ImageResponse } from '@vercel/og' export const config = { runtime: 'experimental-edge', } export default async function handler() { return new ImageResponse( (
👋, 🌎
), { width: 1200, height: 630, // Supported options: 'twemoji', 'blobmoji', 'noto', 'openmoji', 'fluent', 'fluentFlat' // Default to 'twemoji' emoji: 'twemoji', } ) }