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
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()
requestIn 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

it's not that since even "normal" pages doesn't work unless you have
wrangler dev