db7bbb0095
- Change icon background from white (#ffffff) to dark theme (#14161f) - Update capacitor.config.ts backgroundColor to match - Update generate-icons.sh to use dark theme color - Regenerate all Android icons with new background - Prevents white-on-white icon appearance
20 lines
431 B
TypeScript
20 lines
431 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.mew.app',
|
|
appName: 'mew',
|
|
webDir: 'dist',
|
|
server: {
|
|
// Handle deep links from your domain
|
|
hostname: 'mew.app',
|
|
androidScheme: 'https'
|
|
},
|
|
android: {
|
|
// Enable safe area handling for notches and navigation bars
|
|
allowMixedContent: false,
|
|
backgroundColor: '#14161f'
|
|
}
|
|
};
|
|
|
|
export default config;
|