I use a meteorite, and I have static files located in a shared directory:
app
app/.meteor
app/server
app/client
app/packages
app/lib
app/public
app/public/styles
app/public/images
On mine index.html, I have this:
<link rel="stylesheet" href="/public/styles/app.css"/>
I still get this error:
Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://localhost:3000/public/styles/app.css".
How can I get out of this? What is the proper use of the public meteor catalog?
source
share