I'm working with angular 6 and sass bootstrap project and i'm trying to add jquery, popper and js in angular.json
My code in angular.json is :
"styles": [
"src/styles.scss"
],
"scripts": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/popper.js/dist/popper.min.js",
"../node_modules/bootstrap/dist/js/bootstrap.min.js"
]
i have tried this also :
"styles": [
"src/styles.scss"
],
"scripts": [
"./node_modules/jquery/dist/jquery.js",
"./node_modules/popper.js/dist/popper.js",
"./node_modules/bootstrap/dist/js/bootstrap.js"
]
but toggle and dropdown dosnt work for me .
ng serveto compile?