add Capacitor

This commit is contained in:
2023-05-30 00:45:45 +02:00
parent a5ef1c5333
commit f1ddb2d736
3 changed files with 1107 additions and 3 deletions

12
capacitor.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.contexted.app',
appName: 'Contexted',
webDir: 'dist',
server: {
androidScheme: 'https'
}
};
export default config;