Module not found: Error: Can't resolve 'net' in 'node_modules/stompjs/lib'

前端 未结 6 1415
夕颜
夕颜 2021-02-18 20:38

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 \'/../../../.../         


        
6条回答
  •  没有蜡笔的小新
    2021-02-18 21:22

    That's because Net is part of NodeJS, so it doesn't exist in the browser. https://nodejs.org/api/net.html#net_net

    Better update your Webpack configuration with

    node: {
      net: 'empty',
    },
    

提交回复
热议问题