mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 05:37:51 +00:00
9 lines
220 B
TypeScript
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();
|
|
}
|