I am getting below exception
bootstrap.js:240 Uncaught TypeError: Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript
at Object.jQueryDetection (bootstrap.js:240) at bootstrap.js:255 at bootstrap.js:9 at bootstrap.js:10
This is my code in Angular.json
"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.css"
],
"scripts":
[
"node_modules/jquery/dist/jquery.js",
"node_modules/bootstrap/dist/js/bootstrap.js"
]
How can I fix this issue?