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
In createConfigAysnc file, while creating config for webpack, in plugins razzle adding buffer as providePlugin. Want to know why razzle is adding buffer when webpack is 5.
We are seeing issues because of buffer in IE11. Buffer is a node core module and it's not transpiling for IE11. Webpack/babel not converting buffer package and copy pasting source code in output bundle. Buffer is using BigInt and it's not supported in IE11.
I am looking for following options.
Any option we can tell babel to polyfill Buffer to IE11
Is it okay to remove webpack ProvidePlugin not to include buffer? planning to remove this plugin using modifywebconfig option.
The text was updated successfully, but these errors were encountered:
❓Question
In createConfigAysnc file, while creating config for webpack, in plugins razzle adding buffer as providePlugin. Want to know why razzle is adding buffer when webpack is 5.
We are seeing issues because of buffer in IE11. Buffer is a node core module and it's not transpiling for IE11. Webpack/babel not converting buffer package and copy pasting source code in output bundle. Buffer is using BigInt and it's not supported in IE11.
I am looking for following options.
The text was updated successfully, but these errors were encountered: