我收到一个错误消息,说它是哑剧类型,因此无法添加我的样式表。我怀疑它与我给出的路径有关,但不确定[]
我尝试更改文件路径,并单击Visual Studio代码中的链接,它将带我到CSS样式表,但不在我的本地主机上。
Error Refused to apply style from 'http://localhost:8081/assets/css/stylesheet.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled
Link Source <link rel="stylesheet" href="assets/css/stylesheet.css">
File System public|- assets|- css|- -stylesheet.css index.html server.js
我收到一个错误消息,说它是哑剧类型,因此无法添加我的样式表。我怀疑它与我提供的路径有关,但不能完全确定我尝试更改文件...
尝试在链接标记中添加type="text/css"
。
您收到错误消息,因为找不到样式表。text/html
MIME类型是404页(即HTML)的结果。
我发现中间件设置不正确。