There was an error while loading. Please reload this page.
1 parent 2021234 commit 3dc41d8Copy full SHA for 3dc41d8
packages/react-server-dom-webpack/src/ReactFlightWebpackNodeLoader.js
@@ -210,10 +210,10 @@ async function parseExportNamesInto(
210
addExportNames(names, node.declaration.id);
211
}
212
213
- if (node.specificers) {
214
- const specificers = node.specificers;
215
- for (let j = 0; j < specificers.length; j++) {
216
- addExportNames(names, specificers[j].exported);
+ if (node.specifiers) {
+ const specifiers = node.specifiers;
+ for (let j = 0; j < specifiers.length; j++) {
+ addExportNames(names, specifiers[j].exported);
217
218
219
continue;
0 commit comments