We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1afd84 commit 2f03097Copy full SHA for 2f03097
packages/core/src/config.ts
@@ -1029,6 +1029,9 @@ const composeBundlelessExternalConfig = (
1029
),
1030
);
1031
1032
+ // Requests that fall through here cannot be matched by any other externals config ahead.
1033
+ // Treat all these requests as relative import of source code. Node.js won't add the
1034
+ // leading './' to the relative path resolved by `path.relative`. So add manually it here.
1035
if (resolvedRequest[0] !== '.') {
1036
resolvedRequest = `./${resolvedRequest}`;
1037
}
0 commit comments