mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 19:11:32 +03:00
06dda70319
Co-authored-by: EYHN <cneyhn@gmail.com>
24 lines
385 B
TypeScript
24 lines
385 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'app.affine.pro',
|
|
appName: 'AFFiNE',
|
|
webDir: 'dist',
|
|
ios: {
|
|
path: '.',
|
|
},
|
|
server: {
|
|
// url: 'http://localhost:8080',
|
|
},
|
|
plugins: {
|
|
CapacitorCookies: {
|
|
enabled: true,
|
|
},
|
|
CapacitorHttp: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|