fix:网络错误

This commit is contained in:
2025-11-12 09:54:49 +08:00
parent a134b1b382
commit 65a48b6927

View File

@@ -1,9 +1,13 @@
import type { CapacitorConfig } from '@capacitor/cli';
// 开发阶段:使用 http避免 WebView https 与 http API 的混合内容被拦截
const config: CapacitorConfig = {
appId: 'com.bill.ai',
appName: '智能记账',
webDir: 'dist'
webDir: 'dist',
server: {
androidScheme: 'http'
}
};
export default config;