Hi, first of all, awesome library, great job man! 👏 👏
I found a somewhat annoying issue. The file-size shown at the top of the HTML file is calculated incorrectly. In the following example, the bundle has a file-size of 3060595 bytes, which corresponds to 2.918.. Megabytes. The header however shows 3.06.
It seems it is dividing by 1000000, but it should divide by 1024 * 1024.
Hi, first of all, awesome library, great job man! 👏 👏
I found a somewhat annoying issue. The file-size shown at the top of the HTML file is calculated incorrectly. In the following example, the bundle has a file-size of
3060595
bytes, which corresponds to2.918..
Megabytes. The header however shows3.06
.It seems it is dividing by
1000000
, but it should divide by1024 * 1024
.