You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@joakin, here's what I see using the patch with an npm i, npm -s run build, and ls -lh dist/public/*.js dist/public/pages/*.js:
-rw-r--r-- 1 stephen stephen 14K Nov 1 08:46 dist/public/0.a6778bc09c562520d79d.js
-rw-r--r-- 1 stephen stephen 5.0K Nov 1 08:46 dist/public/index.8333527c5e479485c37c.js
-rw-r--r-- 1 stephen stephen 2.1K Nov 1 08:46 dist/public/pages/about.7532c178b7a1fe632263.js
-rw-r--r-- 1 stephen stephen 2.0K Nov 1 08:46 dist/public/pages/home.9ffb9119cf99ff24aeec.js
-rw-r--r-- 1 stephen stephen 448 Nov 1 08:46 dist/public/pages/not-found.5e8c557eb91e25e4b02a.js
-rw-r--r-- 1 stephen stephen 2.1K Nov 1 08:46 dist/public/pages/style-guide.26e7c617ed3fbffd33bb.js
-rw-r--r-- 1 stephen stephen 8.2K Nov 1 08:46 dist/public/pages/summary.1464ab246f60868ce861.js
-rw-r--r-- 1 stephen stephen 11K Nov 1 08:46 dist/public/pages/wiki.5186f78a808174100e96.js
-rw-r--r-- 1 stephen stephen 1.8K Nov 1 08:46 dist/public/runtime.7af0455c44710b6c580d.js
-rw-r--r-- 1 stephen stephen 22K Nov 1 08:46 dist/public/vendor.2901ebc67815bbff6383.js
Dev and prod builds appear to work functionally too.
@joakin, I just realized all your sizes are rather convenient multiples of 4KiB. Maybe an ls logical filesize issue? Here's what I get with du dist/public/*.js dist/public/pages/*.js (reordered to match ls):
@niedzielskidu doesn't report the bytes like ls does, but that is not the point. Your run is the same as latest-deepchildren--async which has an extra async chunk that we do not want. That extra async chunk with the common code form the pages should be folded into index.
@joakin, here's what I see using the patch with an
npm i
,npm -s run build
, andls -lh dist/public/*.js dist/public/pages/*.js
:Dev and prod builds appear to work functionally too.