We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to support both nodeintegration and jQuery, the app should be loaded with :
<!-- Insert this line above script imports --> <script>if (typeof module === 'object') {window.module = module; module = undefined;}</script> <!-- normal script imports etc --> <script src="scripts/jquery.min.js"></script> <script src="scripts/vendor.js"></script> <!-- Insert this line after script imports --> <script>if (window.module) module = window.module;</script>
Source: https://stackoverflow.com/a/37480521
This will allow to avoid using nodeIntegration:false
nodeIntegration:false
"webPreferences": { "nodeIntegration": false }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to support both nodeintegration and jQuery, the app should be loaded with :
Source: https://stackoverflow.com/a/37480521
This will allow to avoid using
nodeIntegration:false
The text was updated successfully, but these errors were encountered: