mirror of
https://github.com/andrei0x309/clear-wallet.git
synced 2024-11-11 11:31:15 +00:00
11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'io.ionic.starter',
|
|
appName: 'Clear Wallet',
|
|
webDir: 'dist',
|
|
bundledWebRuntime: false
|
|
};
|
|
|
|
export default config;
|