aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-02-06 16:11:42 -0500
committerbob <bcz@cs.brown.edu>2019-02-06 16:11:42 -0500
commit59d5992f2a101eff7743328c3fdefe6a0006ada9 (patch)
treeb28dbb2e06f1fffeafcd2b43845072f9f3f6f1fc /webpack.config.js
parent7598b88bbad9690c59f8b164144aa0d02a0a211f (diff)
parent84eea14a86265ce0585342d9f3a3c4107c02df17 (diff)
woring db stub.
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")