refactor: move app to monorepo

This commit is contained in:
2023-03-14 17:05:09 +01:00
parent 2f65ebf57f
commit 54ed0a2f27
775 changed files with 89 additions and 156 deletions

View File

@@ -0,0 +1,39 @@
import {CapacitorConfig} from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'de.anyschool.app',
appName: 'StApps',
webDir: 'www',
bundledWebRuntime: false,
cordova: {
preferences: {
'AndroidXEnabled': 'true',
'android-minSdkVersion': '22',
'BackupWebStorage': 'none',
},
},
plugins: {
SplashScreen: {
launchShowDuration: 6000,
launchAutoHide: false,
backgroundColor: '#ffffff',
androidSplashResourceName: 'splash',
androidScaleType: 'FIT_CENTER',
showSpinner: false,
androidSpinnerStyle: 'large',
iosSpinnerStyle: 'small',
spinnerColor: '#999999',
splashFullScreen: false,
splashImmersive: false,
useDialog: false,
},
LocalNotifications: {
// TODO
},
CapacitorHttp: {
enabled: false,
},
},
};
export default config;