
Vue项目打包发布后,访问首页显示空白,提示报错:
Refused to execute script from 'https://zjoss.com/ai-sdk/index.umd.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
原因是 publicPath 设置错误,调整如下:
默认是
publicPath:'/'
要改成
publicPath:'/ai-sdk/'