Currently, I have a functional SailsJS boilerplate application. The next step I am trying to undertake involves integrating Angular-Material as a dependency in order to kickstart some UI development tasks. However...
After installing angular-material using bower and including references to the necessary files like so:
<link href="./bower_components/angular-material/angular-material.css" rel="stylesheet" />
Based on the file structure shown in Sublime Text, it appears that the path should be valid, right?
https://i.sstatic.net/uOw3z.png
Despite this, upon running my webpage, I am inundated with 404 errors in the console. If I attempt to access
http://localhost:1337/bower_components/angular-material/angular-material.css
, a 404 page is returned. What could be causing this issue?