commerce/app/[locale]/opengraph-image.tsx
2023-10-09 07:34:59 +09:00

9 lines
220 B
TypeScript

import OpengraphImage from 'components/opengraph-image';
export const runtime = 'edge';
export const revalidate = 300; // 5 minutes in seconds
export default async function Image() {
return await OpengraphImage();
}