match.cacheEverything: true?resolveOverride from RequestInitCfProperties (https://developers.cloudflare.com/workers/runtime-apis/request/#requestinitcfproperties) so that I can proxy the request to specific domains. However it seems like this only works when deploying the workers, and doesn't seem to work with npx wrangler dev. Is there a way to make it work?WeakRef and FinalizationRegistry not being available, which it should be according to the spec https://262.ecma-international.org/14.0/#sec-weak-ref-objects

itty-router to define your endpointscontext.waitUntil()myMainEmail@gmail.com but doesnt post the request to the host, but when I trigger email with that test tool, it send the post request. Im new to workers so I dont really knowmatchcacheEverything: trueresolveOverrideRequestInitCfPropertiesnpx wrangler devWeakRefFinalizationRegistryconst schemaMarkup = {
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is Lorem Ipsum?",
"acceptedAnswer": {
"@type": "Answer",
"text": "answer"
}
},
{
"@type": "Question",
"name": "Why do we use it?",
"acceptedAnswer": {
"@type": "Answer",
"text": "answer 2"
}
},
{
"@type": "Question",
"name": "Where does it come from?",
"acceptedAnswer": {
"@type": "Answer",
"text": "answer 3"
}
}
// Add more FAQ items as needed
]
};✘ [ERROR] service core:user:test: Uncaught Error: No such module "cloudflare-internal:email".npx wrangler dev --remoteitty-routercontext.waitUntil()myMainEmail@gmail.comawait fetch("http://example.host.site", {
method: "POST",
headers: {
"Content-Type": "application/json;charset=UTF-8",
},
body: JSON.stringify(data),
});
await message.forward("myMainEmail@gmail.com");export default {
async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
const path = new URL(request.url).pathname
if (path == '/send-email') {
// your email code...
}