mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-12 17:26:22 +00:00
refactor: migrate to ionic standalone components refactor: migrate ion icons to a custom element
30 lines
564 B
TypeScript
30 lines
564 B
TypeScript
import {CapacitorConfig} from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'de.anyschool.app',
|
|
appName: 'StApps',
|
|
webDir: 'www/browser',
|
|
cordova: {
|
|
preferences: {
|
|
'AndroidXEnabled': 'true',
|
|
'android-minSdkVersion': '22',
|
|
'BackupWebStorage': 'none',
|
|
},
|
|
},
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchAutoHide: false,
|
|
backgroundColor: '#3880ff',
|
|
showSpinner: false,
|
|
},
|
|
LocalNotifications: {
|
|
// TODO
|
|
},
|
|
CapacitorHttp: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|