mirror of
https://github.com/SrIzan10/helium.git
synced 2026-06-06 00:56:58 +00:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
import type { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "dev.srizan.helium.mobile",
|
|
appName: "Helium Mobile",
|
|
webDir: "dist",
|
|
server: {
|
|
androidScheme: "https",
|
|
},
|
|
};
|
|
|
|
export default config;
|