Files
DiscordClone/apps/android/capacitor.config.ts
Bryan1029384756 10fa3c71ac
Some checks failed
Build and Release / build-and-release (push) Failing after 4m51s
feat: Add Capacitor configuration for Android and initialize the web application with core providers and routing.
2026-02-19 17:23:58 -06:00

22 lines
396 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.yourorg.discordclone',
appName: 'Discord Clone',
webDir: '../web/dist',
server: {
androidScheme: 'http',
cleartext: true,
},
plugins: {
App: {
// Handle back button in Android
},
CapacitorHttp: {
enabled: true,
},
},
};
export default config;