feat: init

This commit is contained in:
2026-01-16 13:01:40 +07:00
commit 5b6477559f
34 changed files with 13714 additions and 0 deletions

19
capacitor.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "financial.ionic.app",
appName: "financial-ionic",
webDir: "dist",
server: {
url: "http://192.168.1.6:5173", // Vite默认端口
cleartext: true, // 允许HTTP连接
},
plugins: {
Keyboard: {
resize: "ionic", // 使用ionic模式让ion-app自动调整大小
resizeOnFullScreen: true, // Android全屏模式下也要调整
},
},
};
export default config;