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 03a680d commit 7722b62Copy full SHA for 7722b62
src/file-system-loader.js
@@ -42,6 +42,8 @@ export default class FileSystemLoader {
42
if (newPath[0] !== '.' && newPath[0] !== '/') {
43
try {
44
fileRelativePath = nodeResolve.sync(newPath, { basedir: rootRelativeDir });
45
+ // in this case we need to actualize rootRelativePath too
46
+ rootRelativePath = fileRelativePath;
47
}
48
catch (e) {}
49
0 commit comments