next.js/test/e2e/app-dir/metadata-edge/app/og.tsx
og.tsx22 lines402 B
import { ImageResponse } from 'next/og'

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