mirror of
https://github.com/nagaoo0/HabbitGrid.git
synced 2026-01-11 23:44:55 +00:00
13 lines
229 B
TypeScript
13 lines
229 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.habitgrid.app',
|
|
appName: 'HabitGrid',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'https',
|
|
},
|
|
};
|
|
|
|
export default config;
|