-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapacitor.config.ts
More file actions
26 lines (20 loc) 路 785 Bytes
/
Copy pathcapacitor.config.ts
File metadata and controls
26 lines (20 loc) 路 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { CapacitorConfig } from '@capacitor/cli';
/**
* The Capacitor configuration object for the ExpenseWise app.
*/
const config: CapacitorConfig = {
/** Unique app package identifier (reverse-domain format) */
appId: 'com.expensewise.app',
/** Display name of the app as it appears on the device home screen */
appName: 'Exwise',
/** Path to the directory containing the built web application */
webDir: 'dist/expense-wise/browser',
/** Server configuration for live reload and production connections */
server: {
/** Deployed URL of the web app (used for live preview or production API access) */
url: 'https://exwisedev.vercel.app',
/** Allow non-HTTPS traffic for local debugging purposes */
cleartext: true
}
};
export default config;