英文:
Blank page when deploying a Nextjs repository
问题
在 Netlify 成功部署仓库,但显示空白页面而不是我的网站:
这是我的仓库
这是Netlify 网站
英文:
deploy a repo in netlify successfuly but it shows a blank page instead of my site:
This is my repo
and this is netlify site
答案1
得分: 1
问题出在public
文件夹中的index.html
。Netlify将其视为页面的根,而不是.next
文件夹中的index.html
。
删除这个 然后重新部署!
顺便说一句,网站很酷!
1: https://github.com/ssadeghh/portfolio/blob/main/public/index.html
英文:
The issue is the index.html
in the public folder. Netlify sees this as the root of the page instead of the .next
folder's index.html
Delete this and redeploy!
Cool site btw!
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论