any news about when cloudflare pages will support other git providers such as bitbucket?
any news about when cloudflare pages will support other git providers such as bitbucket?

child-process doesn't work since it uses Node and CF doesn't support thatexport async function onRequest(context) and uses the value? Does is always act like a middleware? Would I need to route this manually like in https://developers.cloudflare.com/pages/platform/functions/examples/ab-testing/ ?_routes.json , even when using advanced mode (_worker.js), you do not need to serve static assets using env.ASSETS.fetch -- it's done for you.onRequest syntax is specific to Functions file-based routing, so whilst you could have a middleware that does routing based on the request URL, you'd rather do functions/foo.ts and functions/bar.ts.next() just falls through to the asset server if it isn't a middleware.npx wrangler pages publish public --project-name="${{ inputs.cloudflare_app }}" --branch="${{ github.head_ref || github.ref_name }}" --no-bundle23:15:12 [vite] Error when evaluating SSR module /home/getpsyched/git/printer/src/routes/test/+server.ts: failed to import "html2pdf.js"
|- ReferenceError: self is not defined
at Object.<anonymous> (/home/getpsyched/git/printer/node_modules/html2pdf.js/dist/html2pdf.js:15:4)
at Module._compile (node:internal/modules/cjs/loader:1256:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1310:10)
at Module.load (node:internal/modules/cjs/loader:1119:32)
at Module._load (node:internal/modules/cjs/loader:960:12)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:169:29)
at ModuleJob.run (node:internal/modules/esm/module_job:194:25)child-processexport async function onRequest(context)_routes.json_worker.jsenv.ASSETS.fetchexport async function onRequest({ request, next, env }) {
const url = new URL(request.url)
if (url.pathname === "/foo") {
return new Response("foo")
}
if (url.pathname === "/far") {
return new Response("bar")
}
return next()
}onRequestfunctions/foo.tsfunctions/bar.tsnext()