main
js 26 lines 911 Bytes
Raw
1 /**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 * @flow
8 */
9
10 import type {Request} from 'react-server/src/ReactFlightServer';
11 import type {ReactComponentInfo} from 'shared/ReactTypes';
12
13 export * from 'react-server-dom-webpack/src/server/ReactFlightServerConfigWebpackBundler';
14 export * from 'react-dom-bindings/src/server/ReactFlightServerConfigDOM';
15
16 export const supportsRequestStorage = false;
17 export const requestStorage: AsyncLocalStorage<Request | void> = null as any;
18
19 export const supportsComponentStorage = false;
20 export const componentStorage: AsyncLocalStorage<ReactComponentInfo | void> =
21 null as any;
22
23 export * from '../ReactFlightServerConfigDebugNoop';
24
25 export * from '../ReactFlightStackConfigV8';
26 export * from '../ReactServerConsoleConfigBrowser';