vue前端项目报错Refused to apply style from 'http://localhost:8080/js/theme/default/layer.css?v=3.5.1' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.怎么解决
时间: 2023-12-13 09:16:06 浏览: 115
这个错误通常是由于服务器没有正确地设置 MIME 类型导致的。你可以尝试在服务器上添加以下 MIME 类型:
text/css .css
如果你无法修改服务器设置,可以尝试将资源从 http://localhost 改为相对路径,例如 /js/theme/default/layer.css?v=3.5.1。这可能会解决此问题。另外,你也可以尝试使用 CDN 来加载这些资源,这可以避免这些 MIME 类型问题。
阅读全文