capacitor.config.ts 549 B

123456789101112131415161718192021222324
  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: 3000,
  11. backgroundColor: "#323232",
  12. showSpinner: true,
  13. androidSpinnerStyle: "small",
  14. iosSpinnerStyle: "small",
  15. spinnerColor: "#212121",
  16. splashFullScreen: true,
  17. splashImmersive: true,
  18. },
  19. },
  20. }
  21. export default config