【发布时间】:2020-12-11 23:49:57
【问题描述】:
我试图使用把手在我的 Node JS 应用程序中加载我的 CSS 文件,但我得到了错误
Refused to apply style from 'http://localhost:8080/styles/main.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
我检查了路径及其正确性。有什么解决办法吗?
在我的 index.js 中,我有 app.use(express.static('public'))
我的车把 html 我有 <link rel='stylesheet' type="text/css" href='/styles/main.css'>
我的工作区是
-node_modules
-public
--styles
---main.css
-template-engine
--views
---layout
----main.handlebars
【问题讨论】:
标签: javascript html css node.js handlebars.js