Hi, is it possible to modify this page and put a new one?
Hi, is it possible to modify this page and put a new one?

If you are on the Pro, Business, or Enterprise plan you can customize and brand these pages for your whole account or for specific domains. You can design custom error pages to appear during a security challenge or when an error occurs.- Configuring Custom Pages (Error and Challenge)

async__chunk_xxxxx (5 digits)
Thanks
--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.[[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())
}async__chunk_xxxxx