From 9942b488ead4bafdf478254188a3e6094d460bf0 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Mon, 27 Oct 2025 13:13:41 +0100 Subject: [PATCH] Serve mobile app from url --- capacitor.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/capacitor.config.ts b/capacitor.config.ts index 6b26f8bd..c56dd736 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -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;