Files
chrome-use/docs/src/app/og/route.tsx
T
2026-02-20 08:49:53 -06:00

7 lines
157 B
TypeScript

import { getPageTitle, renderOgImage } from "./og-image";
export async function GET() {
const title = getPageTitle("")!;
return renderOgImage(title);
}