Skip to content

Commit 76f85b3

Browse files
authored
Expose Fizz in stable builds (#21602)
1 parent e16d61c commit 76f85b3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/rollup/bundles.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,16 +267,14 @@ const bundles = [
267267

268268
/******* React DOM Fizz Server *******/
269269
{
270-
bundleTypes: __EXPERIMENTAL__
271-
? [NODE_DEV, NODE_PROD, UMD_DEV, UMD_PROD]
272-
: [],
270+
bundleTypes: [NODE_DEV, NODE_PROD, UMD_DEV, UMD_PROD],
273271
moduleType: RENDERER,
274272
entry: 'react-dom/unstable-fizz.browser',
275273
global: 'ReactDOMFizzServer',
276274
externals: ['react', 'react-dom/server'],
277275
},
278276
{
279-
bundleTypes: __EXPERIMENTAL__ ? [NODE_DEV, NODE_PROD] : [],
277+
bundleTypes: [NODE_DEV, NODE_PROD],
280278
moduleType: RENDERER,
281279
entry: 'react-dom/unstable-fizz.node',
282280
global: 'ReactDOMFizzServer',

0 commit comments

Comments
 (0)