GitToTheHub commented on issue #1562:
URL: https://github.com/apache/cordova-ios/issues/1562#issuecomment-3596861863
You should not use `cordova-plugin-wkwebview-file-xhr` and instead use a
scheme and hostname to get a proper origin for your app. Also you will get as
bonus detailed script errors on ios if you do so. Set this in your `config.xml`
and the remove the plugin:
```xml
<platform name="ios">
<preference name="scheme" value="app" />
<preference name="hostname" value="localhost" />
</platform>
```
If still must use `cordova-plugin-wkwebview-file-xhr` and have problems with
it, you should raise an issue on the plugin
[cordova-plugin-wkwebview-file-xhr](https://github.com/oracle/cordova-plugin-wkwebview-file-xhr),
but i see, you already did it:
https://github.com/oracle/cordova-plugin-wkwebview-file-xhr/issues/95
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]