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 = {
47
47
usingClientEntryPoint : false ,
48
48
} ;
49
49
50
- // if (__DEV__) {
51
- // (Internals: any).usingClientEntryPoint = false;
52
- // }
53
-
54
50
export default Internals ;
Original file line number Diff line number Diff line change @@ -213,6 +213,18 @@ function filterOutEntrypoints(name) {
213
213
hasBundle =
214
214
entryPointsToHasBundle . get ( entry + '.node' ) ||
215
215
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
+ }
216
228
}
217
229
if ( hasBundle === undefined ) {
218
230
// This doesn't exist in the bundles. It's an extra file.
You can’t perform that action at this time.
0 commit comments