12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli/config'
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.lightchat.app',
|
|
appName: 'Light Chat',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'https'
|
|
}
|
|
}
|
|
|
|
export default config |