I am having trouble linking to files that are in the node_modules folder (both in link tags and script tags) in my index.html file. My project is Angular2 based, and I used the Angular CLI to generate the project and its file structure.
The index.html file is in the src folder, which is adjacent to the node_modules folder that contains the files I want to link to.
Currently for the relative path I'm using ../ to go back up a folder but it's not working, as the console is giving me errors for the link tag and both script tags in index.html.
Can someone help me with the correct file paths? Thanks.