使用Vscode的 open with live server 打开html 页面, 但换成360浏览器后报错 failed to load resource:the server responded with a status of 404 (Not Found)
时间: 2023-11-05 21:05:34 浏览: 281
打开端口-vscode
使用Vscode的 open with live server 打开html页面后,在切换到360浏览器时可能会报错 "failed to load resource: the server responded with a status of 404 (Not Found)"。这个错误表示服务器无法找到所请求的资源。解决这个问题的方法有两个方案。
方案一:修改配置文件
1. 找到config文件夹下的index.js文件。
2. 打开index.js文件,找到assetsPublicPath,并将其值修改为"./"。
3. 保存文件,并重新打开html页面。
方案二:检查跨域问题
1. 检查是否存在跨域问题,跨域问题可能导致服务器无法访问所请求的资源。
2. 如果存在跨域问题,可以尝试通过以下方法解决:
- 修改端口号:将Vscode的live server设置中的端口号改为其他可用的端口号,如3000。
- 搜索如何更改360浏览器的端口号,或尝试使用其他浏览器打开html页面。
阅读全文