how do I associate a git repo to an existing pages site that uses file uploads for deployments?
how do I associate a git repo to an existing pages site that uses file uploads for deployments?
wrangler pages deploy ./output where output is the folder where your built assets are.
node: whereas node_compat is a polyfill and allows you to use existing imports but with more limitations on what code you can import./_next/static which I think is ignored by default. the rest of it is either my own static assets that are ignored in my _routes.json file or external assets{"version":1,"description":"Built with @cloudflare/next-on-pages@1.9.0.","include":["/*"],"exclude":["/_next/static/*", "/public/*", "/favicon.ico", "/fonts/*", "/images/*"]}Real Time Logs._routes.json file
favicon.ico, fonts/*, etc.next/output, or whatever the output directory is?.vercel/output/static after running npx @cloudflare/next-on-pages. and it matches what's in the screenshot despite what I put into the custom _routes.json file in the public folder (it even overwrites the one in the public folder)_routes.json support with NextOnPages because it breaks middleware.vercel on my repo. how can I modify the file on cloudflare servers?mv -f _routes.json .vercel/output/static/_routes.json in your build command?
{"version":1,"description":"Built with @cloudflare/next-on-pages@1.9.0.","include":["/*"],"exclude":["/_next/static/*", "/public/*", "/favicon.ico", "/fonts/*", "/images/*"]}