Skip to content

Commit 518f1b2

Browse files
committed
refining
1 parent 06ba922 commit 518f1b2

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,14 @@ date: 2025-08-22
99
You can run multiple Workers in a single dev command by passing multiple config files to `wrangler dev`:
1010

1111
```sh
12-
# Terminal 1 - Main Application
1312
wrangler dev --config ./app/wrangler.jsonc --config ./api/wrangler.jsonc
1413
```
1514

1615
Previously, these Workers could not communicate with Workers running in separate dev commands. Now service bindings and tail consumers work across dev commands:
1716

1817
```sh
19-
# Terminal 2 - Other Workers (e.g. auth)
18+
# Start another Workers (e.g. auth) on a new terminal
2019
wrangler dev --config ./auth/wrangler.jsonc
2120
```
2221

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.
22+
These 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.

0 commit comments

Comments
 (0)