So my file directory looks like this:
/templates
--base.html
/static
--/css
----base.css
In the of my base.html file I have this line:
<link rel="stylesheet" href="{{ url_for('static', filename='css/base.css') }}">
However, when I run the app the base.css file isn't applied to the base.html page. In my browser I get the following error in the console:
GET http://0.0.0.0:8081/static/css/base.css net::ERR_ABORTED 404 (NOT FOUND)
I've already tried clearing my browser cache, hard refreshing the page, and restarting the app, but it still doesn't work.