Skip to content

Commit 5362836

Browse files
committed
try again with a different style
1 parent 78f4d8a commit 5362836

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/content/changelog/workers/2025-08-22-wrangler-dev-multi-config-cross-command-support.mdx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,20 @@ products:
66
date: 2025-08-22
77
---
88

9-
You can run multiple Workers in a single dev command by passing multiple config files to `wrangler dev` (e.g., `wrangler dev --config api.toml --config frontend.toml`). Previously, these Workers could not communicate with Workers running in separate dev commands. Now service bindings and tail consumers work across dev commands:
9+
You can run multiple Workers in a single dev command by passing multiple config files to `wrangler dev`:
1010

1111
```sh
1212
# Terminal 1 - Main Application
13-
wrangler dev --config ./api/wrangler.jsonc --config ./app/wrangler.jsonc
13+
wrangler dev --config ./app/wrangler.jsonc --config ./api/wrangler.jsonc
14+
```
15+
16+
Previously, these Workers could not communicate with Workers running in separate dev commands. Now service bindings and tail consumers work across dev commands:
1417

15-
# Terminal 2 - Shared Worker (e.g. auth)
18+
```sh
19+
# Terminal 2 - Other Workers (e.g. auth)
1620
wrangler dev --config ./auth/wrangler.jsonc
1721
```
1822

19-
Workers can now communicate with each other across separate dev commands, regardless of your development setup. Check out the [Developing with multiple Workers](/workers/development-testing/multi-workers) guide to learn more about the different approaches and when to use each one.
23+
These Workers can now communicate with each other across separate dev commands, regardless of your development setup.
24+
25+
Check out the [Developing with multiple Workers](/workers/development-testing/multi-workers) guide to learn more about the different approaches and when to use each one.

0 commit comments

Comments
 (0)