發(fā)現(xiàn)問(wèn)題:
今天用express+node搭建靜態(tài)前臺(tái)登錄頁(yè)面時(shí),遇見(jiàn)了一個(gè)坑

報(bào)錯(cuò)說(shuō):
Refused to apply style from 'http://localhost:8081/dist/css/swiper.min.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
其實(shí)就是加載不出css模塊

解決辦法:
在app.js中添加一段代碼:
app.use(express.static(__dirname)); //加上了這個(gè)就可以訪問(wèn)了,static參數(shù)為靜態(tài)文件存放目錄:__dirname代表目錄

最后成功打開(kāi)頁(yè)面:
