vue项目打包发布到线上We‘re sorry but xxxx doesn‘t work properly without JavaScript enabled
相信好多人遇到过,vue项目打包发布到线上后,各种资源文件都有加载到,就是出现白屏。返回信息提示为“We’re sorry but xxxxdoesn’t work properly without JavaScript enabled. Please enable it to continue.”1、与后端协调 检查nginx是否配置有问题2、router /index.js : mode:hi
·
相信好多人遇到过,vue项目打包发布到线上后,各种资源文件都有加载到,就是出现白屏。返回信息提示为“We’re sorry but xxxx doesn’t work properly without JavaScript enabled. Please enable it to continue.”
1、与后端协调 检查nginx是否配置有问题
2、router /index.js : mode:history ⇒ mode: ‘hash’,
const router = new VueRouter({
mode: 'hash',
base: process.env.BASE_URL,
routes
});
3、vue.config.js : 添加publicPath : ‘./’
module.exports = {
publicPath: './',
}
更多推荐
已为社区贡献3条内容
所有评论(0)