You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error message I was facing is due to the "Mixed Content" policy enforced by modern browsers. This policy disallows loading insecure (HTTP) content from a secure (HTTPS) site.
Your site is served over HTTPS, but it's trying to load an image from an HTTP URL. This is what's causing the error.
To fix this, you need to ensure that all resources are loaded over HTTPS.
The text was updated successfully, but these errors were encountered:
ItsAnkitPatel
changed the title
Solution Provided for : for issue(#2) File Saver npm Package not working after hosting
Solution Provided for : issue #2 File Saver npm Package not working after hosting
Apr 9, 2024
Inside
utils/index.js
update thedownloadImage
functionThis worked for me.
The error message I was facing is due to the "Mixed Content" policy enforced by modern browsers. This policy disallows loading insecure (HTTP) content from a secure (HTTPS) site.
Your site is served over HTTPS, but it's trying to load an image from an HTTP URL. This is what's causing the error.
To fix this, you need to ensure that all resources are loaded over HTTPS.
The text was updated successfully, but these errors were encountered: