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 7f45dcd commit b462a79Copy full SHA for b462a79
1 file changed
src/framework-configuration.js
@@ -233,8 +233,8 @@ export class FrameworkConfiguration {
233
let grandParent = resourcesRelativeTo[1];
234
let name = resource;
235
236
- if (resource.startsWith('./') && parent !== '') {
237
- name = parent + resource.substr(1);
+ if ((resource.startsWith('./') || resource.startsWith('../')) && parent !== '') {
+ name = join(parent, resource);
238
}
239
240
this.resourcesToLoad[name] = { moduleId: name, relativeTo: grandParent };
0 commit comments