Chris Mohr
Results
1
comments of
Chris Mohr
trafficstars
I ran into this yesterday, and got past it by adding `node-loader` to my webpack config. ```js module: { rules: [ { test: /\.node$/, use: 'node-loader', }, ], }, ```