wallet-connect-web-examples/wallets/react-wallet-v2/next.config.js
2022-10-31 11:21:33 +01:00

12 lines
177 B
JavaScript

module.exports = {
reactStrictMode: true,
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false
}
return config
}
}