Workers can now talk to each other across separate dev commands using service bindings and tail consumers, whether started with vite dev or wrangler dev . Simply start each Worker in its own terminal: # Terminal 1 vite dev # Terminal 2 wrangler dev This is useful when different teams maintain different Workers, or w...
Workers - Run and connect Workers in separate dev commands with the Cloudflare Vite plugin
Cloudflare Developer Platform Changelog · 2025-06-26
Related items
Workers - Develop locally with Containers and the Cloudflare Vite plugin
You can now configure and run Containers alongside your Worker during local development when using the Cloudflare Vite plugin . Previously, you could only develop locally when using Wrangler as your local development server. Configuration You can simply configure your Worker and your Container(s) in your Wrangler co...
Workers - Build TanStack Start apps with the Cloudflare Vite plugin
The Cloudflare Vite plugin now supports TanStack Start apps. Get started with new or existing projects. New projects Create a new TanStack Start project that uses the Cloudflare Vite plugin via the create-cloudflare CLI: npm create cloudflare@latest -- my-tanstack-start-app --framework=tanstack-start yarn create clo...
Workers - The Cloudflare Vite plugin now supports Vite 7
Vite 7 is now supported in the Cloudflare Vite plugin. See the Vite changelog for a list of changes. Note that the minimum Node.js versions supported by Vite 7 are 20.19 and 22.12. We continue to support Vite 6 so you do not need to immediately upgrade.
Workers - Improved React Server Components support in the Cloudflare Vite plugin
The Cloudflare Vite plugin now integrates seamlessly @vitejs/plugin-rsc , the official Vite plugin for React Server Components . A childEnvironments option has been added to the plugin config to enable using multiple environments within a single Worker. The parent environment can then import modules from a child env...
Workers - Wrangler and the Cloudflare Vite plugin support `.env` files in local development
Now, you can use .env files to provide secrets and override environment variables on the env object during local development with Wrangler and the Cloudflare Vite plugin. Previously in local development, if you wanted to provide secrets or environment variables during local development, you had to use .dev.vars file...
Workers - Enhanced support for static assets with the Cloudflare Vite plugin
You can now use any of Vite's static asset handling features in your Worker as well as in your frontend. These include importing assets as URLs, importing as strings and importing from the public directory as well as inlining assets. Additionally, assets imported as URLs in your Worker are now automatically moved to...