Right now loadable expects import to resolve into default or named export in presence of resolveComponent. In common cases the "existence" of imports is ensured by TypeScript, but there could be situations when the result will be still empty causing the following render to fail without triggering proper fallback branch.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Extracted from #938
Right now loadable expects import to resolve into
default
ornamed export
in presence ofresolveComponent
. In common cases the "existence" of imports is ensured by TypeScript, but there could be situations when the result will be still empty causing the following render to fail without triggering proper fallback branch.