Skip to content

Commit d2777e1

Browse files
committed
fixes CI issues
1 parent 7e61e86 commit d2777e1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/content/changelog/workers/2025-06-25-getPlatformProxy-support-remote-bindings.mdx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Next.js apps on Workers can now access deployed Cloudflare resources during `next dev` and `next build` with OpenNext
2+
title: Next.js apps on Workers can now access deployed Cloudflare resources during development and build steps with OpenNext
33
description: You can now use remote bindings with OpenNext applications, which comes with benefits for pages using ISR.
44
products:
55
- workers
@@ -12,17 +12,13 @@ We [recently announced](https://github.com/cloudflare/workers-sdk/discussions/96
1212

1313
Now, you can use remote bindings with your Next.js applications through the [`@opennextjs/cloudflare` adaptor](https://opennext.js.org/cloudflare/bindings#remote-bindings) by enabling the experimental feature in your `next.config.ts`:
1414

15-
<TypeScriptExample>
16-
1715
```ts
1816
- initOpenNextCloudflareForDev();
1917
+ initOpenNextCloudflareForDev({
2018
+ experimental: { remoteBindings: true }
2119
+ });
2220
```
2321

24-
</TypeScriptExample>
25-
2622
Then, all you have to do is specify which bindings you want connected to the deployed resource on your Cloudflare account via the `experimental_remote` flag in your binding definition:
2723

2824
<WranglerConfig>

0 commit comments

Comments
 (0)