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 dc8d8e0 commit 52b02c6Copy full SHA for 52b02c6
packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/common.ts
@@ -308,7 +308,7 @@ export function getCommonConfig(wco: WebpackConfigOptions): Configuration {
308
new (class {
309
apply(compiler: Compiler) {
310
compiler.hooks.emit.tap('angular-cli-stats', compilation => {
311
- const data = JSON.stringify(compilation.getStats().toJson('verbose'));
+ const data = JSON.stringify(compilation.getStats().toJson('verbose'), undefined, 2);
312
compilation.assets['stats.json'] = new RawSource(data);
313
});
314
}
0 commit comments