actually, tenant.app.domain.com is a CNAME record for *.app -> app.domain.com
actually, tenant.app.domain.com is a CNAME record for *.app -> app.domain.com

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/*caches.default, etc) don't set a CF-Cache-Status header.tenant.app.domain.com*.app.domain.com/*"custom_domain": true*.app.nefele.ai/*caches.defaultCF-Cache-Statusexport default {
async fetch(request) {
let url = new URL(request.url)
url.hostname = "project.pages.dev"
return fetch(url, request)
}
}