Got an issue where a stompJS-lib was not found, upon which I got the following error message:
Module not found: Error: Can\'t resolve \'net\' in \'/../../../.../
That's because Net is part of NodeJS, so it doesn't exist in the browser. https://nodejs.org/api/net.html#net_net
Net
Better update your Webpack configuration with
node: { net: 'empty', },