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 be7560d commit 8c290daCopy full SHA for 8c290da
packages/core/src/config.ts
@@ -523,7 +523,7 @@ export function composePrintFileSizeConfig(
523
}) => {
524
let log = `${color.yellow(assets.length)} files generated in ${color.blue(distPath)} ${color.dim(`(${environmentName})`)}`;
525
log += '\n';
526
- log += `${color.magenta('Total size')}: ${(totalSize / 1000).toFixed(1)} kB`;
+ log += `${color.magenta('Total size:')} ${(totalSize / 1000).toFixed(1)} kB`;
527
if (target === 'web') {
528
log += ` ${color.green(`(${(totalGzipSize / 1000).toFixed(1)} kB gzipped)`)}`;
529
}
0 commit comments