mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
8 lines
224 B
TypeScript
8 lines
224 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: '' });
|
|
}
|