15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'tf.monochrome.music',
|
|
appName: 'Monochrome Music',
|
|
webDir: 'dist',
|
|
assets: {
|
|
iconBackgroundColor: '#000000',
|
|
iconBackgroundColorDark: '#000000',
|
|
splashBackgroundColor: '#000000',
|
|
splashBackgroundColorDark: '#000000',
|
|
},
|
|
};
|
|
|
|
export default config;
|