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 3902257 commit b844498Copy full SHA for b844498
1 file changed
lib/services/project-config-service.ts
@@ -116,7 +116,13 @@ export default {
116
.filter(Boolean)
117
.map((c) => {
118
if (this.$fs.isRelativePath(c)) {
119
- return path.join(projectDir || this.projectHelper.projectDir, c);
+ const dir = projectDir || this.projectHelper.projectDir;
120
+
121
+ if (!dir) {
122
+ return c;
123
+ }
124
125
+ return path.join(dir, c);
126
}
127
128
return c;
0 commit comments