Files
AI-Bill/apps/frontend/capacitor.config.ts
2025-11-12 09:54:49 +08:00

14 lines
319 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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