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 f5ae4b4 commit 0784193Copy full SHA for 0784193
src/vm/js/nqp-runtime/runtime.js
@@ -198,9 +198,9 @@ if (process.browser) {
198
for (const prefix of prefixes) {
199
try {
200
if (typeof prefix === 'string') {
201
- /*await*/ loadWithCache(loadFrom.require(prefix + mangled));
+ /*await*/ loadWithCache(loadFrom.require(prefix + '/' + mangled));
202
} else {
203
- /*await*/ loadWithCache(prefix.module.require(prefix.prefix + mangled));
+ /*await*/ loadWithCache(prefix.module.require(prefix.prefix + '/' + mangled));
204
}
205
206
found = true;
0 commit comments