mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 20:11:33 +03:00
22 lines
542 B
TypeScript
22 lines
542 B
TypeScript
import { join } from 'node:path';
|
|
|
|
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'app.affine.pro',
|
|
appName: 'AFFiNE',
|
|
webDir: 'dist',
|
|
android: {
|
|
path: 'App',
|
|
buildOptions: {
|
|
keystorePath: join(__dirname, 'affine.keystore'),
|
|
keystorePassword: process.env.AFFINE_ANDROID_KEYSTORE_PASSWORD,
|
|
keystoreAlias: 'key0',
|
|
keystoreAliasPassword: process.env.AFFINE_ANDROID_KEYSTORE_ALIAS_PASSWORD,
|
|
releaseType: 'AAB',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|