bolt.diy / functions /[[path]].ts
aproli90's picture
Upload 289 files
2e1ab99 verified
raw
history blame contribute delete
376 Bytes
import type { ServerBuild } from '@remix-run/cloudflare';
import { createPagesFunctionHandler } from '@remix-run/cloudflare-pages';
// @ts-ignore because the server build file is generated by `remix vite:build`
import * as serverBuild from '../build/server';
export const onRequest = createPagesFunctionHandler({
build: serverBuild as unknown as ServerBuild,
});