Exclude crypto module from webpack

This commit is contained in:
Tony Garnock-Jones 2018-11-07 00:27:33 +00:00
parent 0364b32136
commit e2e7e0006a
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,7 @@
module.exports = {
entry: "./lib/index.js",
mode: "development",
externals: {
crypto: 'null'
},
};