mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-03-15 12:22:32 +00:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.example.app',
|
|
appName: 'Qortal ',
|
|
webDir: 'dist'
|
|
};
|
|
|
|
export default config;
|