mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
12 lines
398 B
TypeScript
12 lines
398 B
TypeScript
/**
|
|
* Optionally wrapping the configuration with the `withPlatformProxy` function
|
|
* enables programmatic access to the bindings, e.g. for generating types.
|
|
*
|
|
* We're using separate files, so that "wrangler" doesn't get bundled with your worker.
|
|
*/
|
|
|
|
import { withPlatformProxy } from "bknd/adapter/cloudflare/proxy";
|
|
import config from "./config.ts";
|
|
|
|
export default withPlatformProxy(config);
|