Base3 syntax re: stylesheets

An observation for the dev team: When pulling in multiple stylesheets I got a new error in Chrome saying…

Resource interpreted as Stylesheet but transferred with MIME type text/html
on multiple files. 

(I’d remove one to quickly see if it was broken and another one would “break” in its place.)

Stackoverflow seems to think this is normally a server-side error. I’m not a server person so I can’t speak to that, but thought I’d pass it on.

I fixed it by changing the quotes from double to single (just got lucky) and making sure all embedded stylesheets ended with />

I figured you might want to know since the two Vin65 css files I saw already loaded into my example Base3 site were using different syntax.

tl;dr
this works good: <link href='/assets/css/style.css' rel='stylesheet' type='text/css'/>
this sometimes doesn’t: <link rel="stylesheet" href="/assets/slick/slick.css">
and I have no idea why.

The first example references the text/css MIME type.