commerce/app/opengraph-image.tsx
Kristian Duda 33a24a08af refactor
2024-06-28 13:50:31 +02:00

9 lines
232 B
TypeScript

import OpengraphImage from 'components/opengraph-image';
export const runtime = 'edge';
export default async function Image() {
const title = process.env.SITE_NAME || 'Payload Store';
return await OpengraphImage({ title });
}