I have an application using angular 4 that is giving 404 error when trying to load css , font and javascript resources from the node_modules folder.
So it's in my index.html:
<link href="node_modules/font-awesome/css/font-awesome.min.css" />
<link href="node_modules/simple-line-icons/css/simple-line-icons.css" />
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link href="node_modules/bootstrap-switch/dist/css/bootstrap3/bootstrap-switch.min.css" />
My angular-cli is updated and I used to load normally.
From what I've been looking for, I read that I needed the "moduleResolution": "node"
setting in tsconfig.json. It was already there and it is not working.
What should I do?