8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import type { PageContext } from "vike/types";
|
|
|
|
import { buildPublicUrl } from "@/buildPublicUrl";
|
|
|
|
export const image = (pageContext: PageContext) => {
|
|
return buildPublicUrl(pageContext, "/opengraph/merise.png");
|
|
};
|