Created
May 17, 2022 03:24
-
-
Save nestorbonilla/505f1cfbce73f868c6dc028833bdbd2b to your computer and use it in GitHub Desktop.
configuration for contractkit 2.0.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
future: { | |
webpack5: true, | |
}, | |
webpack:(config) => { | |
config.resolve.fallback = { | |
...config.resolve.fallback, | |
fs: false, | |
net: false | |
}; | |
return config; | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment