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