wallet-connect-web-examples/wallets/react-wallet-eip155/next.config.js

12 lines
177 B
JavaScript
Raw Normal View History

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