14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
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;
|