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 b990f49 commit b6e6417Copy full SHA for b6e6417
packages/cli-v3/src/build/externals.ts
@@ -360,7 +360,7 @@ function createExternalsCollector(
360
};
361
362
// If the path ends with .wasm or .node, we should mark it as external
363
- if (args.path.endsWith(".wasm") || args.path.endsWith(".node")) {
+ if (resolvedPath.endsWith(".wasm") || resolvedPath.endsWith(".node")) {
364
return markExternal("path ends with .wasm or .node");
365
}
366
0 commit comments