Serve mobile app from url

This commit is contained in:
MartinBraquet
2025-10-27 13:13:41 +01:00
parent 5d83f4bf2d
commit 9942b488ea

View File

@@ -3,7 +3,11 @@ import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.compass.app',
appName: 'Compass',
webDir: 'web/.next'
webDir: 'web/.next',
server: {
url: 'https://compassmeet.com',
cleartext: true
},
};
export default config;