Skip to content

Commit

Permalink
update bundles config
Browse files Browse the repository at this point in the history
  • Loading branch information
alunyov committed Nov 12, 2023
1 parent 81338d6 commit 3c73a3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/rollup/bundles.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const bundles = [

/******* Isomorphic Shared Subset for FB *******/
{
bundleTypes: [FB_WWW_DEV, FB_WWW_PROD],
bundleTypes: __EXPERIMENTAL__ ? [FB_WWW_DEV, FB_WWW_PROD] : [],
moduleType: ISOMORPHIC,
entry: 'react/src/ReactSharedSubsetFB.js',
global: 'ReactSharedSubset',
Expand Down Expand Up @@ -587,7 +587,7 @@ const bundles = [

/******* React Server DOM FB Server *******/
{
bundleTypes: [FB_WWW_DEV, FB_WWW_PROD],
bundleTypes: __EXPERIMENTAL__ ? [FB_WWW_DEV, FB_WWW_PROD] : [],
moduleType: RENDERER,
entry: 'react-server-dom-fb/src/ReactFlightDOMServerFB.js',
global: 'ReactFlightDOMServer',
Expand All @@ -598,7 +598,7 @@ const bundles = [

/******* React Server DOM FB Client *******/
{
bundleTypes: [FB_WWW_DEV, FB_WWW_PROD],
bundleTypes: __EXPERIMENTAL__ ? [FB_WWW_DEV, FB_WWW_PROD] : [],
moduleType: RENDERER,
entry: 'react-server-dom-fb/src/ReactFlightDOMClientFB.js',
global: 'ReactFlightDOMClient',
Expand Down

0 comments on commit 3c73a3d

Please sign in to comment.