AFFiNE/scripts/setup/global.ts

16 lines
375 B
TypeScript
Raw Normal View History

import { getBuildConfig } from '@affine/cli/src/webpack/runtime-config';
import { setupGlobal } from '@affine/env/global';
globalThis.BUILD_CONFIG = getBuildConfig({
distribution: 'web',
mode: 'development',
channel: 'canary',
static: false,
});
2023-07-18 19:53:10 +03:00
2023-07-30 09:35:00 +03:00
if (typeof window !== 'undefined') {
window.location.search = '?prefixUrl=http://127.0.0.1:3010/';
}
setupGlobal();