We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8bd56 commit b0dd4e1Copy full SHA for b0dd4e1
packages/angular_devkit/build_angular/src/webpack/configs/common.ts
@@ -269,7 +269,7 @@ export function getCommonConfig(wco: WebpackConfigOptions): Configuration {
269
compiler.hooks.done.tapPromise('angular-cli-stats', async (stats) => {
270
const { stringifyStream } = await import('@discoveryjs/json-ext');
271
const data = stats.toJson('verbose');
272
- const statsOutputPath = path.join(root, buildOptions.outputPath, 'stats.json');
+ const statsOutputPath = path.resolve(root, buildOptions.outputPath, 'stats.json');
273
274
try {
275
await fsPromises.mkdir(path.dirname(statsOutputPath), { recursive: true });
0 commit comments