Files
sveltekit-og/examples/cf-page-build/src/routes/cog/+server.ts
Shivam Meena b2c5bc1633 pages cfw
2023-10-05 09:01:20 +05:30

11 lines
323 B
TypeScript

import OG from './OG.svelte';
import type { RequestHandler } from '@sveltejs/kit';
import { componentToImageResponse } from '@ethercorps/sveltekit-og';
export const GET: RequestHandler = async () => {
return componentToImageResponse(
OG,
{ text: 'Ready to dive in?', spanText: 'Start your free trial today.' }
);
};