我无法从真实的设备的外部URL加载任何图像。我总是得到以下错误:
这是我的capacitor.config.json
capacitor.config.json
{ ..., server: { cleartext: true, hostname: "rootsmenu.com", allowNavigation: [ 'localhost', 'rootsmenu.com' ] } }
tyg4sfes1#
我用以下配置编辑了capacitor.config.ts,它工作了!而且,我编辑了错误的文件android/app/src/main/assets/capacitor.config.json。因为每次我运行npx cap sync android时,它都被替换为capacitor.config.ts内容
capacitor.config.ts
android/app/src/main/assets/capacitor.config.json
npx cap sync android
{ ... android: { allowMixedContent: true }, server: { cleartext: true, hostname: "localhost" } }
1条答案
按热度按时间tyg4sfes1#
我用以下配置编辑了
capacitor.config.ts
,它工作了!而且,我编辑了错误的文件android/app/src/main/assets/capacitor.config.json
。因为每次我运行npx cap sync android
时,它都被替换为capacitor.config.ts
内容