Vue项目报错: Unexpected token ‘<‘ 或 We‘re sorry but xx doesn‘t work properly without JavaScript enabled

问题

Vue项目部署后,请求返回 “We’re sorry but XXX doesn’t work properly without JavaScript enabled. Please enable it to
continue.<”
控制台报错: Uncaught SyntaxError: Unexpected token ‘<’
在这里插入图片描述
在这里插入图片描述

原因

查看 Nginx 的错误日志
2024/05/11 17:11:42 [error] 40792#19592: *1 CreateFile() “D:\nginx-1.19.6/html/favicon.ico” failed (2: The system cannot find the file specified), client: 127.0.0.1, server: localhost, request: “GET /favicon.ico HTTP/1.1”, host: “localhost”, referrer: “http://localhost/”

提示找不到项目文件,应该是 Nginx 的代理配置问题,最终发现是 root 路径的斜杠配置错误,windows 环境。

location /abc/def/ {
    root        D:/xxx-front;  # "/" 斜杠配置错误
    index       index.html;
    try_files   $uri $uri/ /index.html =404;
    
    ......
}

解决

修改 location 中的 root: D:/xxx 改为 D:\xxx

location /abc/def/ {
    root        D:\xxx-front;  # "/" 改为 "\"
    index       index.html;
    try_files   $uri $uri/ /index.html =404;
    
    ......
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值