In SvelteKit do I have to use `wrangler dev` instead of `vite dev` to make service bindings work?

I have two SvelteKit projects, both running on Pages. Project B has a service binding to Project A but it only works if Project A is running the preview script (which contains wrangler dev), and not when using the dev script (vite dev). Is this a "hard" limit or is there a way to make service bindings work with the "normal" dev mode?
3 Replies
veeque
veequeOP2w ago
Trying to use the service binding when vite dev is running on project A gives: "[wrangler] Couldn't find wrangler dev session for service "auth-app" to proxy to" as the return for the fetch() request
veeque
veequeOP2w ago
In local development, you cannot make Service Binding RPC calls to a Worker with static assets. This is a temporary limitation, we are working to remove it.
https://developers.cloudflare.com/workers/static-assets/billing-and-limitations/#limitations is the reason why?
Cloudflare Docs
Billing and Limitations · Cloudflare Workers docs
Billing, troubleshooting, and limitations for Static assets on Workers
From An unknown user
From An unknown user
veeque
veequeOP2w ago
it's not that since even "normal" pages doesn't work unless you have wrangler dev

Did you find this page helpful?