13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.filesharing.app',
|
|
appName: 'FileSharing',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'https',
|
|
},
|
|
};
|
|
|
|
export default config;
|