From d678a08d41362f2b1dfa75e58e3c7d17252ccad0 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 16 Feb 2024 12:36:36 +0100 Subject: [PATCH] Update README.md Polyfill node core modules in webpack 5 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 198e666..69a954b 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,9 @@ Specific areas of focus include: - Encryption and decryption of key-pairs during operations safely. - Transactions and other complex network interactions simplified. + ### Polyfill node core modules in webpack 5 + Webpack < 5 used to include polyfills for node.js core modules by default. This is no longer the case. This affect CRA, Angular, Vue.js and Gatsby ([see fix](https://web3auth.io/docs/troubleshooting/webpack-issues#react-create-react-app)). We recommend using next.js as it [supports modern browsers with no configuration](https://nextjs.org/docs/architecture/supported-browsers#polyfills). +

(back to top)