forked from jsnbuchanan/crowd-funder-for-time-pwa
14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'app.timesafari.app',
|
|
appName: 'TimeSafari',
|
|
webDir: 'dist',
|
|
bundledWebRuntime: false,
|
|
server: {
|
|
cleartext: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|