You can now share local dev sessions through Cloudflare Tunnel and get a public URL when using either Wrangler or the Cloudflare Vite plugin . This is useful when you need to share a preview, test a webhook, or access your app from another device. This lets you either: start a temporary Quick tunnel with a random .t...
Workers - Share local dev servers through Cloudflare Tunnel in Wrangler and Vite
Cloudflare Developer Platform Changelog · 2026-05-18
Related items
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...
Cloudflare Tunnel, Workers - Manage Cloudflare Tunnels with Wrangler
You can now manage Cloudflare Tunnels directly from Wrangler , the CLI for the Cloudflare Developer Platform. The new wrangler tunnel commands let you create, run, and manage tunnels without leaving your terminal. Available commands: wrangler tunnel create — Create a new remotely managed tunnel. wrangler tunnel list...
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 - Run and connect Workers in separate dev commands with the Cloudflare Vite plugin
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 - 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 - Debug, profile, and view logs for your Worker in Chrome Devtools — now supported in the Cloudflare Vite plugin
You can now debug, profile, view logs, and analyze memory usage for your Worker using Chrome Devtools when your Worker runs locally using the Cloudflare Vite plugin . Previously, this was only possible if your Worker ran locally using the Wrangler CLI , and now you can do all the same things if your Worker uses Vite...