| 1234567891011121314151617 |
- import type { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'com.example.app',
- appName: 'aiHuman',
- webDir: 'public',
- server: {
- // 配置远程服务器地址
- url: 'https://192.168.20.177:3000/sentio',
- cleartext: false, // HTTPS 使用 false
- },
- android: {
- allowMixedContent: true, // 允许混合内容
- },
- };
- export default config;
|