disable verification or embed ssl expo

I’m trying to call a get request using expo, but the code swears at the ssl certificate, is it possible to somehow disable the ssl certificate check, or somehow embed this certificate into the application?

A typical get request example:

 const response = await fetch(`https://.....:..../......./....`, {
          headers: {
            Authorization: `Basic ${base64.encode(email + ':' + password)}`,
          },
        });