Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将我的 Next.JS 版本升级到 Next 11.1.2 后,我的主页正在重定向我 404 not found 。而其他路线按预期工作。
我的 app.js 中没有任何特定的东西会阻止我的主页。任何帮助将不胜感激。
经过一番努力弄清楚为什么 home/index.page 没有为我加载。我发现我的 index.jsx 位于名为 index 的文件夹中,而 Next.js 不会将其识别为应用程序的起点。当我从文件夹中取出文件并将 index.jsx 直接放在 Pages 文件夹下时,它开始像魔术一样工作。
希望这对其他人有一些帮助。