I have a problem integrating the bootstrap.js, popper.js, and jquery.js scripts into my Angular project. I've already made a few attempts, but nothing has resolved so far.
My scripts are being merged as follows:
"styles": [
"./node_modules/bootstrap/scss/bootstrap.scss",
"src/styles.scss"
],
"scripts": [
"node_modules/jquery/dist/jquery.js",
"node_modules/popper.js/dist/popper.js",
"node_modules/bootstrap/dist/js/bootstrap.js"
]
One important note: The Bootstrap Css is loading correctly and working perfectly. I already tried to put a ./
to try to get the current directory reference.