这是我的示例代码https://codesandbox.io/s/km5n6o757v
redirect.js
// not working
export { default as Bar } from "./subredirect";
export { default as Masmun } from "./othersubredirect";
export { default as Foo } from "./source";
// working
export { default as Foo } from "./source";
export { default as Bar } from "./subredirect";
export { default as Masmun } from "./othersubredirect";
那里实际发生了什么?