next.js/test/e2e/app-dir/metadata-dynamic-routes/app/opengraph-image.tsx
opengraph-image.tsx25 lines471 B
import { ImageResponse } from 'next/og'

export const alt = 'Open Graph'

/* without generateImageMetadata */
export default function og() {
  return new ImageResponse(
    (
      <div
        style={{
          width: '100%',
          height: '100%',
          display: 'flex',
          alignItems: 'center',
          justifyContent: 'center',
          fontSize: 128,
          background: 'lavender',
        }}
      >
        Open Graph
      </div>
    )
  )
}
Quest for Codev2.0.0
/
SIGN IN