score:2

Accepted answer

try adding this to your webpack config:

module.exports = {
  ...
  node: {
    fs: 'empty',
    child_process: 'empty'
  }
};

the warning you are seeing has nothing to do with those errors. if you'd like to fix the warning then it may require some context on where the warning occurs.


Related Query

More Query from same tag