AFFiNE/scripts/setup/global.ts

18 lines
412 B
TypeScript
Raw Normal View History

import { getRuntimeConfig } from '@affine/cli/src/webpack/runtime-config';
import { setupGlobal } from '@affine/env/global';
process.env.RUNTIME_CONFIG = JSON.stringify(
getRuntimeConfig({
2024-09-10 07:03:58 +03:00
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();