arifszn / gitprofile

🚀 Create and deploy a dynamic portfolio by just providing your GitHub username.
https://arifszn.github.io/gitprofile
MIT License
1.55k stars 1.44k forks source link

Vercel Deployment only shows a blank page #596

Closed itzzjb closed 1 month ago

itzzjb commented 1 month ago

@arifszn Hi, I tried to deploy this on Vercel. I left the default configuration. I was left with a blank page. Any idea on how to resolve this?

Thank you. Januda

arifszn commented 1 month ago

For deploying in Vercel, you might need to remove the base property from the config. Or set it to /. It's needed for only deploying to GitHub page.

itzzjb commented 1 month ago

Hi 😄 thanks for the response.

So, you mean to change the base in gitprofile.config.ts to / right?

Now, it's like this. ( My repository name is also gitprofile)

  base: '/gitprofile/',
arifszn commented 1 month ago

Hi 😄 thanks for the response.

So, you mean to change the base in gitprofile.config.ts to / right?

Now, it's like this. ( My repository name is also gitprofile)

  base: '/gitprofile/',

Yes, for Vercel, change it to /.

itzzjb commented 1 month ago

Is it ok if I changed my repository name to itzzjb.github.io so it would work on both Vercel and Github pages?

arifszn commented 1 month ago

Is it ok if I changed my repository name to itzzjb.github.io so it would work on both Vercel and Github pages?

It won't work for Vercel.

itzzjb commented 1 month ago

Thanks, man, it worked. If it's okay can you tell me the reason why it's not working when we are using the base as /gitprofile?

Sorry for the trouble. I am still learning.

arifszn commented 1 month ago

Thanks, man, it worked. If it's okay can you tell me the reason why it's not working when we are using the base as /gitprofile?

Sorry for the trouble. I am still learning.

Vercel and Github page have different deployment strategies. For GitHub page, we need to point where the project is going to be hosted related to the root path. But on vercel, it's going to be hosted on the root path.

itzzjb commented 1 month ago

Ah ok, I got it now. Thanks for the help. Also thanks for this wonderful template. You're a lifesaver. 🫶