I'm working on an Electron project, and when attempting to include jQuery, I get this error:
C:\Users\Matthew\Documents\Electron\ElectronProjects\Iris\js\jquery.min.js:4 Uncaught SyntaxError:
C:\Users\Matthew\Documents\Electron\ElectronProjects\Iris\js\jquery.min.js:4 b),b&&a.jQuery===n&&(a.jQuery=Hb),n},b||(a.jQuery=a.$=n),n});jQuery v3.0.0-pre
I'v attempted to use the way that was recommended in the Electron issues page (window.$ = window.jQuery = require('./../js/jquery.min.js');). It always throws this error though.
Any ideas?