aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authortschicke-brown <tyler_schicke@brown.edu>2019-02-05 19:38:12 -0500
committerGitHub <noreply@github.com>2019-02-05 19:38:12 -0500
commitf201a0689495263bb381ba738a8fb95c41c7d0f2 (patch)
tree94d6ccf16572463520fd744e41988b1dc8c7b7e3 /webpack.config.js
parent6e66f8b227c730e07863a93a8bce5ee0d51d2ddc (diff)
parent6a13071a695732b2235f988278c52d0072af0fb5 (diff)
Merge pull request #4 from browngraphicslab/scripting
Scripting
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
index a30868b93..1a7c9286e 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -7,6 +7,10 @@ module.exports = {
mode: 'development',
entry: "./src/Main.tsx",
devtool: "source-map",
+ node: {
+ fs: 'empty',
+ module: 'empty'
+ },
output: {
filename: "./bundle.js",
path: path.resolve(__dirname, "build")