add Capacitor

This commit is contained in:
2023-05-30 00:45:45 +02:00
parent bd9b926550
commit 45fd39022d
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;