mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 16:22:21 +03:00
16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
import { setupGlobal } from '@affine/env/global';
|
|
|
|
import { getRuntimeConfig } from '../../apps/core/.webpack/runtime-config';
|
|
|
|
globalThis.runtimeConfig = getRuntimeConfig({
|
|
distribution: 'browser',
|
|
mode: 'development',
|
|
channel: 'canary',
|
|
});
|
|
|
|
if (typeof window !== 'undefined') {
|
|
window.location.search = '?prefixUrl=http://127.0.0.1:3010/';
|
|
}
|
|
|
|
setupGlobal();
|