npx next dev would (with instant updates as I change the code, instead of needing to compile everything all the time).wrangler pages dev it will run an outdated version of what I locally have (which I assume is my last build).wrangler dev it is asking me to specify an entry point, which I don't now what to put in there for the dev environment.next dev. When you are done developing and want to deploy, run wrangler pages dev to test the final version before deployment.wrangler.tomlwrangler dev runs a worker, but next-on-pages is a pages feature (which is a subset of workers). So, wrangler dev will probably not be compatible with next-on-pages, so please use wrangler pages dev.
Generated Pages Functions bundle size (49446697) is over the limit of 25.0 MiB with empty pages going over 3MB. I'm blocked on this, is there a way to measure / debug / split parts to find the dependency cause? Note that Vercel deploys it successfully without crossing their limit. I'd love to stay on Edge/CFfetch('myUrl', { cache: 'force-cache' }) the worker throws an error due to https://github.com/cloudflare/workerd/issues/698 .
next devwrangler pages devwrangler pages dev I get the following error[wrangler:err] TypeError: This ReadableStream is disturbed (has already been read from), and cannot be used as a body.
Unused stream created
This ReadableStream is disturbed (has already been read from).route will work for pages in the wranger.toml ? kinda annoying that workers and pages are still seperate.. wrangler pages deploy or by pushing a commit to preview branch? Specifically for VARS and stuff, my NEXT_PUBLIC_APP_URL is only working when git pushednext dev with edge runtime? When I load up my app on next dev with runtime = "edge" it shows a blank screenruntime='edge' and it works next dev if in edge runtime mode working with Cloudflare? I don't want to NEXT_PUBLIC_ my github app secretsgetRequestContext and .dev.vars https://developers.cloudflare.com/pages/framework-guides/nextjs/deploy-a-nextjs-site/#top-level-getrequestcontext
process.env anywhere in the code with getRequestContext())next.config.js?