Skip to content

Commit 2ebe8ec

Browse files
Apply suggestion from @lrapoport-cf
Co-authored-by: lrapoport-cf <[email protected]>
1 parent 4c7c227 commit 2ebe8ec

File tree

1 file changed

+2
-2
lines changed
  • src/content/docs/workers/development-testing

1 file changed

+2
-2
lines changed

src/content/docs/workers/development-testing/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ By default, running `wrangler dev` / `vite dev` (when using the [Vite plugin](/w
6565
During local development, your Worker code interacts with these bindings using the exact same API calls (such as `env.MY_KV.put()`) as it would in a deployed environment. These local resources are initially empty, but you can populate them with data, as documented in [Adding local data](/workers/development-testing/local-data/).
6666

6767
- By default, bindings connect to **local resource simulations** (except for [AI bindings](/workers-ai/configuration/bindings/), as AI models always run remotely).
68-
- You can override this default behavior and **connect to the remote resource**, on a per-binding basis. This lets you connect to real, production resources while still running your Worker code locally.
69-
- When using `wrangler dev`, you can temporarily disable all remote resources (and connect only to local resources) by providing the `--local` flag (i.e. `wrangler dev --local`)
68+
- You can override this default behavior and **connect to the remote resource** on a per-binding basis with [remote bindings](/workers/development-testing/#remote-bindings). This lets you connect to real, production resources while still running your Worker code locally.
69+
- When using `wrangler dev`, you can temporarily disable all [remote bindings](/workers/development-testing/#remote-bindings) (and connect only to local resources) by providing the `--local` flag (i.e. `wrangler dev --local`)
7070

7171
## Remote bindings
7272

0 commit comments

Comments
 (0)