From e2e7e0006a193a9becbda95601d20294be8b7be8 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 7 Nov 2018 00:27:33 +0000 Subject: [PATCH] Exclude crypto module from webpack --- packages/syntax-playground/webpack.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/syntax-playground/webpack.config.js b/packages/syntax-playground/webpack.config.js index 38a73a3..4371d27 100644 --- a/packages/syntax-playground/webpack.config.js +++ b/packages/syntax-playground/webpack.config.js @@ -1,4 +1,7 @@ module.exports = { entry: "./lib/index.js", mode: "development", + externals: { + crypto: 'null' + }, };