我正在运行 Next.js 开发服务器。当我转到第 1 页,然后单击指向第 2 页的链接时,效果很好。 (只是为了澄清,我没有使用 Next 的 as
标签的 <Link>
道具,只是使用常规的旧 href
。)
但是,如果我然后刷新页面 #2,页面本身会加载,所有图像也是如此......但所有 Javascript 文件都失败并显示 404:
<块引用>http://localhost:3000/page2/_next/static/chunks/main.js?ts=1612664646023 net::ERR_ABORTED 404(未找到)2localhost/:196 GET
<块引用>http://localhost:3000/page2/_next/static/development/_buildManifest.js?ts=1612664646023 net::ERR_ABORTED 404(未找到)2localhost/:1 GET
<块引用>http://localhost:3000/page2/_next/static/chunks/webpack.js?ts=1612664646023 net::ERR_ABORTED 404(未找到)7localhost/:196 GET
<块引用>http://localhost:3000/page2/_next/static/chunks/main.js?ts=1612664646023 net::ERR_ABORTED 404(未找到)
有人知道我能做些什么来解决这个问题吗?
答案 0 :(得分:0)
结果是我在第 2 页的 getStaticProps
中遇到了问题;一旦我修复了页面再次工作。