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.
2 parents f2ae5f4 + 00002fe commit 75b9a2eCopy full SHA for 75b9a2e
lib/index.js
@@ -86,8 +86,9 @@ class BundleTrackerPlugin {
86
87
// Set output directories
88
this.outputChunkDir = path.resolve(get(compiler.options, 'output.path', process.cwd()));
89
+ // @ts-ignore: TS2345 this.options.path can't be undefined here because we set a default value above
90
// @ts-ignore: TS2345 this.options.filename can't be undefined here because we set a default value above
- this.outputTrackerFile = path.resolve(this.options.filename);
91
+ this.outputTrackerFile = path.resolve(path.join(this.options.path, this.options.filename));
92
this.outputTrackerDir = path.dirname(this.outputTrackerFile);
93
94
return this;
0 commit comments