"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css"
],
"scripts": [
"../node_modules/jquery/dist/jquery.js",
"../node_modules/bootstrap/dist/js/bootstrap.min.js"
]
I have added the styles and scripts in .angular-cli.json Everything is working fine.
I'm using some Jquery related code in index.html and I'm facing the below exception
Uncaught ReferenceError: $ is not defined
at (index):95
If I load the files using .angular-cli.json will it not reflect in my index.html?
I'm using animation.css and animation.js. Is it possible to load in .angular-cli.json file
AOS.init({
easing: 'ease-in-out-sine',
once:'true'
});