From 91a1fc8a0c069bd0eaa443a698546711db7eee4a Mon Sep 17 00:00:00 2001 From: Mathieu Schimmerling Date: Fri, 2 Jan 2026 19:13:24 +0100 Subject: [PATCH] docs(cloudflare): modify import in Cloudflare configuration example Updated import statement to include 'd1' from 'bknd/adapter/cloudflare'. --- .../(documentation)/integration/(runtimes)/cloudflare.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/(documentation)/integration/(runtimes)/cloudflare.mdx b/docs/content/docs/(documentation)/integration/(runtimes)/cloudflare.mdx index 1157e06..27b51b0 100644 --- a/docs/content/docs/(documentation)/integration/(runtimes)/cloudflare.mdx +++ b/docs/content/docs/(documentation)/integration/(runtimes)/cloudflare.mdx @@ -214,7 +214,7 @@ Now you can use the CLI with your Cloudflare resources. Instead, it's recommended to split this configuration into separate files, e.g. `bknd.config.ts` and `config.ts`: ```typescript title="config.ts" -import type { CloudflareBkndConfig } from "bknd/adapter/cloudflare"; +import { d1, type CloudflareBkndConfig } from "bknd/adapter/cloudflare"; export default { app: (env) => ({ @@ -236,4 +236,4 @@ As an additional safe guard, you have to set a `PROXY` environment variable to ` ```bash PROXY=1 npx bknd types -``` \ No newline at end of file +```