2023-04-25 06:33:09 +03:00
|
|
|
// @ts-check
|
2023-03-01 10:40:01 +03:00
|
|
|
import 'dotenv/config';
|
|
|
|
|
2023-04-25 06:33:09 +03:00
|
|
|
/**
|
|
|
|
* @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 = {
|
2023-04-18 10:23:00 +03:00
|
|
|
enableLegacyCloud: process.env.ENABLE_LEGACY_PROVIDER
|
|
|
|
? process.env.ENABLE_LEGACY_PROVIDER === 'true'
|
|
|
|
: true,
|
2023-03-01 22:47:09 +03:00
|
|
|
enableBroadCastChannelProvider: Boolean(
|
|
|
|
process.env.ENABLE_BC_PROVIDER ?? '1'
|
|
|
|
),
|
2023-03-11 02:45:10 +03:00
|
|
|
enableDebugPage: Boolean(
|
|
|
|
process.env.ENABLE_DEBUG_PAGE ?? process.env.NODE_ENV === 'development'
|
|
|
|
),
|
2023-03-01 10:40:01 +03:00
|
|
|
};
|