gives me stuff like "ReferenceError: async__chunk_24831 is not defined" in prod when i call a server
gives me stuff like "ReferenceError: async__chunk_24831 is not defined" in prod when i call a server function

--remote flag to use them directly. I am trying to do this on @cloudflare/next-on-pages and it gives me error Is there a way to configure it (maybe in setupDevPlatform?) to use remote proxying like with normal wrangler dev? If I have to make my own local copy that sends remote requests, I can do that too, but I am not sure how to add StoreDurableObject proxy-class to worker (since it's all wrapped up in next)StoreDurableObject that just fetches the remote http) but it would be cool if it just used all remote data, like i do in worker-dev (with --remote flag.) It's all working as expected with KV/D1, too, so this is just a DO problem.wrangler dev --remoteyarn exec vercel -- build) command failed. For more details see the Vercel logs above.[wrangler] Couldn't find `wrangler dev` session for class "StoreDurableObject" to proxy tosetupDevPlatformStoreDurableObjectStoreDurableObjectyarn exec vercel -- build[[durable_objects.bindings]]
name = "STORE"
class_name = "StoreDurableObject"
script_name = "store-main" let out
if (process?.env?.NODE_ENV === 'development') {
const cookieStore = cookies()
const idToken = cookieStore.get('idToken')?.value
headers.cookie = `idToken=${idToken}`
out = await fetch(STORE_URL, {
method: 'POST',
body: JSON.stringify({ query, variables }),
headers
}).then(r => r.json())
} else {
const s = STORE.get(STORE.idFromName(location))
out = await s.fetch('https://store/graphql', {
method: 'POST',
body: JSON.stringify({ query, variables }),
headers
}).then(r => r.json())
}