Skip to content

Commit c4651dc

Browse files
anthonyalayoJohnNilsson
authored andcommitted
provide empty mock for child_process so importing libraries with it works (#3033)
1 parent 763c4c2 commit c4651dc

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/react-scripts/config/webpack.config.dev.js

+1
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ module.exports = {
270270
fs: 'empty',
271271
net: 'empty',
272272
tls: 'empty',
273+
child_process: 'empty',
273274
},
274275
// Turn off performance hints during development because we don't do any
275276
// splitting or minification in interest of speed. These warnings become

packages/react-scripts/config/webpack.config.prod.js

+1
Original file line numberDiff line numberDiff line change
@@ -349,5 +349,6 @@ module.exports = {
349349
fs: 'empty',
350350
net: 'empty',
351351
tls: 'empty',
352+
child_process: 'empty',
352353
},
353354
};

0 commit comments

Comments
 (0)