That is weird. To be honest I don’t know what could be causing this and I was unable to reproduce. Maybe could you give a try with a development build from a release that we are about to put out this week?
I would recommend after installing clearing the cache again, specially the browser-side one. Let us know if this solves it.
I installed the dev build but the issue persists. After investigating further, I found a clear mismatch between the runtime expectations and the packaged files:
All 170 chunk files use the format [id].[hash].js (hash in the filename), and none use [id].js. So every chunk request returns 404.
Looks like a webpack config mismatch between output.chunkFilename (which produces hashed filenames) and the runtime URL builder (which expects bare [id].js with the hash as a query string). Either the chunk files should be renamed to drop the hash, or the runtime should construct URLs with the hash inside the filename.
I think your `tainacan_blocks_common_scripts.js` is being served a cached version. I’ve opened the .zip that is in the Drive and search for this 4179 reference (in the tainacan_blocks_common_scripts.js), it is not there.
I was seeing if I could debug something for you here@e.lito. It seems weird to me that your page is requesting this scripts with the `?ver=…` at the end:
We do not add those versions, the version hash is in the end of the file. Which to me reinforces the idea that some caching plugin is changing those requests. This is the expected behavior in version 1.0.3 (and 1.1.0, which I sent to you)