import type { RequestHandler } from './$types'; export const GET = (async ({ fetch }) => { return await fetch('api/posts'); }) satisfies RequestHandler;