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
Would you consider adding HashedModuleIdsPlugin to the default webpack configuration of the rekit framework?
plugins: [
...
new webpack.HashedModuleIdsPlugin(),
].filter(Boolean),
HashedModuleIdsPlugin : This plugin will cause hashes to be based on the relative path of the module, generating a four character string as the module id. Suggested for use in production.
It can stabilize webpack's hash, ensure that the hash value of unchanged files is the same, and make full use of the browser's caching mechanism.
The text was updated successfully, but these errors were encountered:
If we pack is creating a bundle, does it really matter? Unless you're saying the chunking would be different... I applaud better use of caching at every level so long as it can be expired at will.
Hello,thank you for the rekit framework!
Would you consider adding
HashedModuleIdsPlugin
to the default webpack configuration of the rekit framework?HashedModuleIdsPlugin : This plugin will cause hashes to be based on the relative path of the module, generating a four character string as the module id. Suggested for use in production.
It can stabilize webpack's hash, ensure that the hash value of unchanged files is the same, and make full use of the browser's caching mechanism.
The text was updated successfully, but these errors were encountered: