```typescript if (env.MY_CERT) { globalThis.fetch = env.MY_CERT.fetch.bind(env.MY_CERT); } ``` Wi

if (env.MY_CERT) {
  globalThis.fetch = env.MY_CERT.fetch.bind(env.MY_CERT);
}


Will this cause all my fetches, including those in modules, to use the mTLS binding's fetch?
Was this page helpful?