欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-04-17 08:04:09
...

相信好多人遇到过,vue项目打包发布到线上后,各种资源文件都有加载到,就是出现白屏。返回信息提示为“We’re sorry but xxxx doesn’t work properly without JavaScript enabled. Please enable it to continue.”
vue项目打包发布到线上We‘re sorry but xxxx doesn‘t work properly without JavaScript enabled
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 错误