mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import type { IOption } from 'ffc-js-client-side-sdk/esm/types';
|
|
|
|
export const config: IOption = {
|
|
secret: process.env['AFFINE_FEATURE_FLAG_TOKEN'],
|
|
anonymous: true,
|
|
// user: {
|
|
// userName: 'the user's user name',
|
|
// id: 'the user's unique identifier'
|
|
// }
|
|
devModePassword: '-',
|
|
};
|