when you're saying binding, you're referring only to "kv, ques, r2" right?
when you're saying binding, you're referring only to "kv, ques, r2" right?


tenant.app.domain.com is not a Custom Domain it will never route to the Pages project, even if you issue a certificate. The same for any other subdomain of app, because the matching Custom Domain on the project always has to exist for the full domain being hit, a CNAME like this does not work.*.app.domain.com/*






"custom_domain": true and set the pattern to *.app.nefele.ai/*tenant.app.domain.com*.app.domain.com/*export default {
async fetch(request) {
let url = new URL(request.url)
url.hostname = "project.pages.dev"
return fetch(url, request)
}
}