Hi, I've added web3auth to a React app I built, and even with the polyfills described here I am still seeing this error with process/browser
_ERROR in ./node_modules/async/dist/async.mjs 71:25-32
Module not found: Error: Can't resolve 'process/browser' in '.../node_modules/async/dist'
Did you mean 'browser.js'?
BREAKING CHANGE: The request 'process/browser' failed to resolve only because it was resolved as fully specified
(probably because the origin is strict EcmaScript Module, e. g. a module with javascript mimetype, a '.mjs' file, or a '.js' file where the package.json contains '"type": "module"').
The extension in the request is mandatory for it to be fully specified.
Add the extension to the request._
I've double checked, my config-overrides file includes the line
config.plugins = (config.plugins || []).concat([
new webpack.ProvidePlugin({
process: "process/browser",
Buffer: ["buffer", "Buffer"],
}),
]);
anyone else experiencing this issue?
Originally posted by: jackbl1
Check the discussion at: https://github.com/orgs/Web3Auth/discussions/795