Skip to content

Commit 1553757

Browse files
committedJan 11, 2019
fix: use the correct size unit (KiB)
fixes #3283
1 parent 6d5cbdb commit 1553757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/@vue/cli-service/lib/commands/build/formatStats.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function formatStats (stats, dir, api) {
3636
})
3737

3838
function formatSize (size) {
39-
return (size / 1024).toFixed(2) + ' kb'
39+
return (size / 1024).toFixed(2) + ' KiB'
4040
}
4141

4242
function getGzippedSize (asset) {

0 commit comments

Comments
 (0)
Please sign in to comment.