mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
import OpengraphImage from 'components/opengraph-image';
|
|
|
|
export const runtime = 'edge';
|
|
|
|
export default async function Image({ params }: { params: { collection: string } }) {
|
|
|
|
return await OpengraphImage({ title: '' });
|
|
}
|