rsnext/test/e2e/app-dir/metadata-dynamic-routes/app/opengraph-image.tsx
Jiachi Liu d71cbe9116
Vendor @vercel/og and expose ImageResponse (#47715)
- Reverts #47711 
- Disable image response for turbopack
2023-03-31 02:29:10 +00:00

23 lines
439 B
TypeScript

import { ImageResponse } from 'next/server'
export const alt = 'Open Graph'
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>
)
)
}