capacitor.config.ts 451 B

123456789101112131415161718192021
  1. import type { CapacitorConfig } from '@capacitor/cli'
  2. const config: CapacitorConfig = {
  3. appId: 'app.hapticx.procollege',
  4. appName: 'ProCollege',
  5. webDir: '.output/public',
  6. zoomEnabled: false,
  7. backgroundColor: '#323232',
  8. plugins: {
  9. SplashScreen: {
  10. launchShowDuration: 2000,
  11. backgroundColor: "#323232",
  12. showSpinner: false,
  13. splashFullScreen: true,
  14. splashImmersive: true,
  15. },
  16. },
  17. }
  18. export default config