关于vite build后访问报错:Expected a JavaScript module script but the server responded with a MIME type.

2021/11/1 17:13:35

本文主要是介绍关于vite build后访问报错:Expected a JavaScript module script but the server responded with a MIME type.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

问题描述:
  • vite 项目 build 部署后在浏览器中访问出现以下报错:

    • 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.

 

 

解决方案:

上述问题的原因在于:项目build后没有找到正确的静态资源路径,解决如下

// vite.config.js目录下,修改内容如下:
export default viteConfig = {
    base: '/'
}

 

原文:https://www.codeleading.com/article/34945983820/

 



这篇关于关于vite build后访问报错:Expected a JavaScript module script but the server responded with a MIME type.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程