mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'io.ionic.starter',
|
|
appName: 'test-app',
|
|
webDir: 'build',
|
|
bundledWebRuntime: false
|
|
};
|
|
|
|
export default config;
|