gh-pages部署开始渲染,但是报错404
Gh-pages deployment starts to render, but errors 404
我已经在本地测试了我的 React pwa,并对结果感到满意,但是,当我部署到 gh-pages 时,出现 404 错误。有趣的是,我的网站在转到未找到的 404 页面之前开始呈现。我很茫然,因为我读过的大部分内容都说这个问题是由于缺少 index.html 文件造成的,而这里不是这种情况。任何帮助将不胜感激。
我认为问题出在 api.js
第 68 行
const results = await axios.get('https://dx9dq6q3th.execute-api.us-east-1.amazonaws.com/dev/api/get-auth-url');
const { authURL } = results.data;
return (window.location.href = authURL);
authURL 似乎是 undefined
。因此,当它设置 window.location.href = undefined
时,它会请求 https://evandersloot.github.io/meet-app/undefined
然后 github returns 一个 404 页面。
我已经在本地测试了我的 React pwa,并对结果感到满意,但是,当我部署到 gh-pages 时,出现 404 错误。有趣的是,我的网站在转到未找到的 404 页面之前开始呈现。我很茫然,因为我读过的大部分内容都说这个问题是由于缺少 index.html 文件造成的,而这里不是这种情况。任何帮助将不胜感激。
我认为问题出在 api.js
第 68 行
const results = await axios.get('https://dx9dq6q3th.execute-api.us-east-1.amazonaws.com/dev/api/get-auth-url');
const { authURL } = results.data;
return (window.location.href = authURL);
authURL 似乎是 undefined
。因此,当它设置 window.location.href = undefined
时,它会请求 https://evandersloot.github.io/meet-app/undefined
然后 github returns 一个 404 页面。