I have added bootstrap dependencies in index.html file. this index file is in src folder. and node modules is in above it. Folder structure is given below.
Library
node_modules
src
index.html
Now I am targeting to node_modules from index.html. My code is given below.
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
And also tried with ./ and just starts from node_modules. What is the problem here.