// /pages/api/og.jsx import { ImageResponse } from 'next/og' export const config = { runtime: 'edge', } export default function () { return new ImageResponse( (
Hello!
) ) }