I have been dedicated to minimizing the build size of my app as much as possible, and I have observed that the crypto-browserify
module is consuming a significant amount of space. While I understand that Next.js polyfills the node module if necessary, I would like to specifically remove or replace crypto-browserify with the default crypto module.
You can view the analysis of my current node_module bundle https://i.stack.imgur.com/YPbae.png
I came across this related GitHub issue, but I do not want to disable all polyfills.