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

64 阅读1分钟

vue打包之后,通过HbuildX打包成APK,安装到部分设备上白屏,提示如下错误 Strict MIME type checking is enforced for module scripts per HTML spec 解决办法:builid中加上 --no-module

"scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build --no-module",
    "lint": "vue-cli-service lint"
  },