mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
8 lines
240 B
TypeScript
8 lines
240 B
TypeScript
import { serve } from "bknd/adapter/cloudflare";
|
|
import config from "../../config.ts";
|
|
|
|
export default serve(config, () => ({
|
|
// since bknd is running code-only, we can use a pre-initialized app instance if available
|
|
warm: true,
|
|
}));
|