I have a js file that i need to include in angular.
how to do that?
I added the js file in assets folder and included that in the angular.json
"scripts": [ "assets/bootstrap.bundle.min.js" ]
still not working.
Hi ramitaherwahd...,
Use the following code.
Syntax:
"scripts": [ "../path" ];
Code
"scripts": [ "../assets/bootstrap.bundle.min.js" ]
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.