This commit is contained in:
Lee Robinson 2024-04-17 21:38:19 -05:00
parent ddc7d67bae
commit e2b2081058
3 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,8 @@
import OpengraphImage from 'components/opengraph-image'; import OpengraphImage from 'components/opengraph-image';
import { getPage } from 'lib/shopify'; import { getPage } from 'lib/shopify';
export const runtime = 'edge';
export default async function Image({ params }: { params: { page: string } }) { export default async function Image({ params }: { params: { page: string } }) {
const page = await getPage(params.page); const page = await getPage(params.page);
const title = page.seo?.title || page.title; const title = page.seo?.title || page.title;

View File

@ -1,5 +1,7 @@
import OpengraphImage from 'components/opengraph-image'; import OpengraphImage from 'components/opengraph-image';
export const runtime = 'edge';
export default async function Image() { export default async function Image() {
return await OpengraphImage(); return await OpengraphImage();
} }

View File

@ -1,6 +1,8 @@
import OpengraphImage from 'components/opengraph-image'; import OpengraphImage from 'components/opengraph-image';
import { getCollection } from 'lib/shopify'; import { getCollection } from 'lib/shopify';
export const runtime = 'edge';
export default async function Image({ params }: { params: { collection: string } }) { export default async function Image({ params }: { params: { collection: string } }) {
const collection = await getCollection(params.collection); const collection = await getCollection(params.collection);
const title = collection?.seo?.title || collection?.title; const title = collection?.seo?.title || collection?.title;