是否可以在Android Capacitor应用上将默认来源设置为https://example.org,而不是标准http://localhost

最佳答案

来源由网络视图处理,并且取决于应用程序的投放网址,因此您不能直接更改来源,但可以更改网址电容器的使用,这将更改来源。要更改URL,请在capacitor.config.json中配置服务器对象的主机名和androidSchene属性

"server": {
    "hostname": "example.org",
    "androidScheme": "https"
}


https://capacitor.ionicframework.com/docs/basics/configuring-your-app#common-configuration

08-19 17:43