glemiere
glemiere
Agreed, must have!
@robmadole why removing the default export ?
I confirm! v5.0.0 using WKWebView result in CORS issues for picture loaded remotely. Downgrading to 4.2.1 is fixing the problem.
@Boldonglen change the version of the package in your `package.json`, then run `npm install`. If it's still doesn't work then you should look into the configuration of the server serving...
@Boldonglen you can enable CORS in PHP using the following header : ``` header("Access-Control-Allow-Origin: *"); ``` You can directly apply this header to your nginx configuration, see : https://gist.github.com/Stanback/7145487
@matheusdavidson you have no CORS issues on your server as long as downgrading to 4.2.1 works. If it doesn't, only then you might have a real CORS issue ;)
@Ross-Rawlins maybe you have an actual CORS misconfiguration server side ?
@wis3ape yes images are getting corrupted when you navigate while it's loading, I recommend you to use the preload function of the library. I built a preloader running after user...
@Ross-Rawlins have you tried to set up a proxy ?
@Ross-Rawlins Basically you need to fetch your pictures with a server that serves them back to your app with the right CORS configuration. You can implement this anyway you want,...