mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 00:11:33 +03:00
13 lines
218 B
TypeScript
13 lines
218 B
TypeScript
|
import type { CapacitorConfig } from '@capacitor/cli';
|
||
|
|
||
|
const config: CapacitorConfig = {
|
||
|
appId: 'app.affine.pro',
|
||
|
appName: 'AFFiNE',
|
||
|
webDir: 'dist',
|
||
|
android: {
|
||
|
path: 'App',
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|