Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Created June 20, 2022 06:01
Show Gist options
  • Select an option

  • Save vaibhavgehani/41cef8b23b9d7d31320b249f3bcca899 to your computer and use it in GitHub Desktop.

Select an option

Save vaibhavgehani/41cef8b23b9d7d31320b249f3bcca899 to your computer and use it in GitHub Desktop.
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.example.app',
appName: 'cordovaToCapacitor',
webDir: 'www',
bundledWebRuntime: false,
cordova: {
preferences: {
ScrollEnabled: 'false',
'android-minSdkVersion': '19',
BackupWebStorage: 'none',
SplashMaintainAspectRatio: 'true',
FadeSplashScreenDuration: '300',
SplashShowOnlyFirstTime: 'false',
SplashScreen: 'screen',
SplashScreenDelay: '3000',
Orientation: 'portrait'
}
}
};
export default config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment