31 lines
550 B
TypeScript
31 lines
550 B
TypeScript
|
import { ImageResponse } from '@vercel/og'
|
||
|
|
||
|
export const config = {
|
||
|
runtime: 'experimental-edge',
|
||
|
}
|
||
|
|
||
|
export default function handler() {
|
||
|
return new ImageResponse(
|
||
|
(
|
||
|
<div
|
||
|
style={{
|
||
|
fontSize: 128,
|
||
|
background: 'white',
|
||
|
width: '100%',
|
||
|
height: '100%',
|
||
|
display: 'flex',
|
||
|
textAlign: 'center',
|
||
|
alignItems: 'center',
|
||
|
justifyContent: 'center',
|
||
|
}}
|
||
|
>
|
||
|
Hello world!
|
||
|
</div>
|
||
|
),
|
||
|
{
|
||
|
width: 1200,
|
||
|
height: 600,
|
||
|
}
|
||
|
)
|
||
|
}
|