mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 00:35:38 +02:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.nestri.play',
|
|
appName: 'Nestri Play',
|
|
webDir: 'dist'
|
|
};
|
|
|
|
export default config;
|