0


前端项目发布到Nginx里报Failed to load module script错误

错误信息:

Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec.

报错原因:

我在项目里使用了 mjs 文件,而ngnix无法识别该类型的文件

      <script type="module" src="../build/pdf.mjs"></script>
      <link rel="stylesheet" href="viewer.css" />
      <script type="module" src="viewer.mjs"></script>

处理方式:

1.在服务器nginx目录 找到**conf/mime.types 文件找到 application/javascript 项并添加mjs类型**

**2.确保nginx.conf里http 里include 了该文件 **

3.然后执行命令重新载入配置文件或直接重启服务

nginx -s reload

终极踩坑:

按照以上步骤然、并、卵,你猜怎么着:

浏览器缓存搞了我一个小时,想放弃的时候才突然想到会不会是缓存问题........勾上它 F5

起飞~~~~~~~~~~~~~~~~~~


本文转载自: https://blog.csdn.net/cg_ssh/article/details/140933790
版权归原作者 cg_ssh 所有, 如有侵权,请联系我们删除。

“前端项目发布到Nginx里报Failed to load module script错误”的评论:

还没有评论