bolt.diy / functions /[[path]].ts
Heuehneje's picture
bolt.diy
baa4c21 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,
});