When I run ng serve and try to open up my app, it says that there is an error and the app cant find bootstrap or popper.js. I put code in my angular.json file in the scripts and styles tag. Can someone please help me? thanks!
this is the code that i try to put into the angular.json file on the app:
"styles": [
"src/styles.css",
"../node_modules/font-awesome/css/font-awesome.css",
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
],
"scripts": [
"../node_modules/jquery/dist/jquery.slim.js",
"../node_modules/popper.js/dist/umd/popper.min.js",
"../node_modules/bootstrap/dist/js/bootstrap.min.js"
],