I'm trying to build a web-app using Buffalo but I'm having a difficult time figuring out why my site.css file is not being applied.
The error that I am getting on Chrome is:
Refused to apply style from 'http://localhost:3000/assets/css/site.css' because its MIME type ('text/plain') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
I've tried looking through the docs for how Buffalo manages assets, and it says:
Any assets placed in the /assets folder will be copied to the "distribution" automatically, and can be found at /assets/path/to/asset.
My code where I link the stylesheet looks like this:
<link rel="stylesheet" type="text/css" href="/assets/css/site.css" />
Any ideas as to what else I could be missing?
Thanks!