1f035f4a6e
- Update all branding: titles, meta tags, OG tags, manifest - Rename MewLogo component to DittoLogo - Update Capacitor config: appId to pub.ditto.app, hostname to ditto.pub - Migrate Android Java package from com.mew.app to pub.ditto.app - Rename MewNotificationPlugin to DittoNotificationPlugin - Update all localStorage keys from mew: to ditto: prefix - Update Nostr encrypted settings d-tag from mew-metadata to ditto-metadata - Update all page titles, zap comments, and UI strings - Rename ic_stat_mew.xml drawable to ic_stat_ditto.xml - Update build script references (mew.apk -> ditto.apk) - Update all domain references (mew.shakespeare.wtf -> ditto.pub)
20 lines
437 B
TypeScript
20 lines
437 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'pub.ditto.app',
|
|
appName: 'ditto',
|
|
webDir: 'dist',
|
|
server: {
|
|
// Handle deep links from your domain
|
|
hostname: 'ditto.pub',
|
|
androidScheme: 'https'
|
|
},
|
|
android: {
|
|
// Enable safe area handling for notches and navigation bars
|
|
allowMixedContent: false,
|
|
backgroundColor: '#14161f'
|
|
}
|
|
};
|
|
|
|
export default config;
|