Hello,thank you for the rekit framework!
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.
Hello,thank you for the rekit framework!
Would you consider adding
HashedModuleIdsPluginto 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.