Magento 2 后端 MIME 类型('text/html')不可执行,并且严格 MIME

问题描述 投票:0回答:1

我全新安装了 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 文件,我有一个虚拟主机等,并尝试重新部署、清除缓存方法等。没有任何效果。

知道该怎么做吗?

apache magento2
1个回答
0
投票

我在 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.

步骤

  1. 确保从更新所需管理配置的集成或暂存环境中转储

    app/etc/config.php

  2. 然后,使用 ece-tools 包命令:

    php ./vendor/bin/ece-tools config:dump
    .

  3. 使用

    scp
    CLI 命令在您的本地机器上下载远程
    app/etc/config.php
    文件。

  4. 然后,将此文件添加到git,应用git commit并执行git push。

  5. 最后,将最新的更改部署到集成 -> 暂存 -> 生产环境。

© www.soinside.com 2019 - 2024. All rights reserved.