mirror of
https://github.com/vercel/commerce.git
synced 2025-05-11 20:27:51 +00:00
9 lines
264 B
TypeScript
9 lines
264 B
TypeScript
import OpengraphImage from 'components/opengraph-image';
|
|
|
|
export const runtime = 'edge';
|
|
|
|
export default async function Image({}: { params: { page: string } }) {
|
|
const title = process.env.SITE_NAME || 'Payload Store';
|
|
return await OpengraphImage({ title });
|
|
}
|