File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,4 @@ const Internals: ReactDOMInternals = {
4747 usingClientEntryPoint : false ,
4848} ;
4949
50- // if (__DEV__) {
51- // (Internals: any).usingClientEntryPoint = false;
52- // }
53-
5450export default Internals ;
Original file line number Diff line number Diff line change @@ -213,6 +213,18 @@ function filterOutEntrypoints(name) {
213213 hasBundle =
214214 entryPointsToHasBundle . get ( entry + '.node' ) ||
215215 entryPointsToHasBundle . get ( entry + '.browser' ) ;
216+
217+ // The .react-server and .rsc suffixes may not have a bundle representation but
218+ // should infer their bundle status from the non-suffixed entry point.
219+ if ( entry . endsWith ( '.react-server' ) ) {
220+ hasBundle = entryPointsToHasBundle . get (
221+ entry . slice ( 0 , '.react-server' . length * - 1 )
222+ ) ;
223+ } else if ( entry . endsWith ( '.rsc' ) ) {
224+ hasBundle = entryPointsToHasBundle . get (
225+ entry . slice ( 0 , '.rsc' . length * - 1 )
226+ ) ;
227+ }
216228 }
217229 if ( hasBundle === undefined ) {
218230 // This doesn't exist in the bundles. It's an extra file.
You can’t perform that action at this time.
0 commit comments