我全新安装了 Magento(OS X 上的 Apache)。前端工作,但后端坏了:控制台给出
Refused to apply style from '<URL>' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
我有所有 .htacces 文件,我有一个虚拟主机等,并尝试重新部署、清除缓存方法等。没有任何效果。
知道该怎么做吗?
我在 Adobe Commerce Cloud 项目中遇到了这个问题。 以下步骤帮助我解决了问题
Refused to apply style from '<URL>' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
步骤
确保从更新所需管理配置的集成或暂存环境中转储
app/etc/config.php
。
然后,使用 ece-tools 包命令:
php ./vendor/bin/ece-tools config:dump
.
使用
scp
CLI 命令在您的本地机器上下载远程app/etc/config.php
文件。
然后,将此文件添加到git,应用git commit并执行git push。
最后,将最新的更改部署到集成 -> 暂存 -> 生产环境。