Strict MIME type checking is enforced for module scripts per HTML spec.

2024-01-07 23:39:53

前言

最近使用docker打包Nginx和vue 为镜像文件,启动镜像时报错

错误信息如下:

index89886.js:1 Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "text/html". Strict MIME type checking is enforced for module scripts per HTML spec.

在这里插入图片描述
需要修改这个文件:
在这里插入图片描述
上面的文件内容如下:


types {
    text/html                                        html htm shtml;
    text/css                                         css;
    text/xml                                       

文章来源:https://blog.csdn.net/qq_32370913/article/details/135395205
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。