mirror of
https://github.com/logseq/logseq.git
synced 2026-04-24 22:25:01 +00:00
15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.Logseq',
|
|
appName: 'capacitor-testapp',
|
|
bundledWebRuntime: false,
|
|
webDir: 'public',
|
|
server: {
|
|
url: process.env.LOGSEQ_APP_SERVER_URL,
|
|
cleartext: true
|
|
}
|
|
};
|
|
|
|
export = config;
|