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