首页 > 代码库 > nginx - Resource interpreted as Stylesheet but transferred with MIME type text/plain
nginx - Resource interpreted as Stylesheet but transferred with MIME type text/plain
在部署前端项目的时候,网站跑起来了,可就是css样式没加载出来,查看css文件也已经load进来,被坑了3个小时终于发现问题所在:
nginx.conf中添加下面两行配置即可,可参考nginx默认配置文件
include mime.types;
default_type application/octet-stream;
如果不设置css文件就会被当作text/plain类型发送到浏览器。从而导致css样式无法显示
nginx - Resource interpreted as Stylesheet but transferred with MIME type text/plain
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。