相信好多人遇到过,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: './',
}

更多推荐

vue项目打包发布到线上We‘re sorry but xxxx doesn‘t work properly without JavaScript enable