Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/content/docs/workers/local-development.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ npx wrangler dev
| Rate Limiting | ✅ | ✅ |
| Service Bindings (multiple workers) | ✅ | ✅ |
| Vectorize | ✅[^3] | ✅ |
| Workflows | ✅ | ❌ |
| Workflows | ✅[^4] | ❌ |

With any bindings that are not supported locally, you will need to use the [`--remote` command](#develop-using-remote-resources-and-bindings) in wrangler, such as `wrangler dev --remote`.

Expand All @@ -61,6 +61,8 @@ With any bindings that are not supported locally, you will need to use the [`--r

[^3]: Using Vectorize always accesses your Cloudflare account to run queries, and will incur usage charges even in local development.

[^4]: `pause()` and `resume()` are not available in local development.

## Work with local data

When running `wrangler dev`, resources such as KV, Durable Objects, D1, and R2 will be stored and persisted locally and not affect the production resources.
Expand Down