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

12 lines
177 B
JavaScript
Raw Normal View History

2022-02-02 12:13:49 +00:00
module.exports = {
2022-10-31 10:21:33 +00:00
reactStrictMode: true,
webpack(config) {
config.resolve.fallback = {
...config.resolve.fallback,
fs: false
}
return config
}
2022-02-25 13:19:39 +00:00
}