mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 14:01:44 +03:00
31 lines
739 B
JavaScript
31 lines
739 B
JavaScript
// @ts-check
|
|
import 'dotenv/config';
|
|
|
|
/**
|
|
* @type {import('@affine/env').BlockSuiteFeatureFlags}
|
|
*/
|
|
export const blockSuiteFeatureFlags = {
|
|
enable_database: true,
|
|
enable_slash_menu: true,
|
|
enable_edgeless_toolbar: true,
|
|
enable_block_hub: true,
|
|
enable_drag_handle: true,
|
|
enable_surface: true,
|
|
enable_linked_page: true,
|
|
};
|
|
|
|
/**
|
|
* @type {import('@affine/env').BuildFlags}
|
|
*/
|
|
export const buildFlags = {
|
|
enableLegacyCloud: process.env.ENABLE_LEGACY_PROVIDER
|
|
? process.env.ENABLE_LEGACY_PROVIDER === 'true'
|
|
: true,
|
|
enableBroadCastChannelProvider: Boolean(
|
|
process.env.ENABLE_BC_PROVIDER ?? '1'
|
|
),
|
|
enableDebugPage: Boolean(
|
|
process.env.ENABLE_DEBUG_PAGE ?? process.env.NODE_ENV === 'development'
|
|
),
|
|
};
|