Hey all, for local development I'm seeing that I can now just call `next start` and it magicaly work

Hey all, for local development I'm seeing that I can now just call next start and it magicaly works through this addition:

if (process.env.NODE_ENV === "development") {
  const { setupDevPlatform } = require("@cloudflare/next-on-pages/next-dev")
  setupDevPlatform()
}


This is quite amazing, but I'm trying to figure out how to enable connecting to real remote objects instead of a mocked version (through miniflare). Something equivalent to this wrangler command: npx wrangler dev --remote

Is there a way to enable the
--remote
flag when I call next start ?
Was this page helpful?