mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 02:47:06 +00:00
18 lines
316 B
TypeScript
18 lines
316 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'social.flotilla',
|
|
appName: 'Flotilla',
|
|
webDir: 'build'
|
|
server: {
|
|
androidScheme: "https"
|
|
},
|
|
plugins: {
|
|
SplashScreen: {
|
|
androidSplashResourceName: "splash"
|
|
}
|
|
},
|
|
};
|
|
|
|
export default config;
|