0
I am with an application using angular 4 that is giving error 404 when trying to load resources css, fonts and javascript folder node_modules.
It’s like this on 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 before I normally carried.
What I’ve been looking for, I read that I needed the setting "moduleResolution": "node"
in tsconfig.json. It’s already there and it’s not working.
What should I do?