-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Vercel setting for production deployment #41
Conversation
a4aa58f
to
21fdf2b
Compare
@@ -7,6 +7,11 @@ const nextConfig = { | |||
hostname: '127.0.0.1', | |||
port: '54321', | |||
pathname: '/storage/v1/object/public/**' | |||
}, | |||
{ | |||
protocol: 'https', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This setting is needed to display uploaded images on production environment.
If the setting is nothing, Next.js automatically add link to image_url like https://xxx.com/_next/image?referer=https://image_object_url
.
name: Deploy to Vercel | ||
|
||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Secrets have already set via github-cli.
gh secret set VERCEL_ORG_ID -b"xxx" --repo tabi-memo/frontend
gh secret set VERCEL_PROJECT_ID -b"xxx" --repo tabi-memo/frontend
gh secret set VERCEL_TOKEN -b"xxx" --repo tabi-memo/frontend
Description
Deployed App URL
https://tabi-memo.vercel.app/
Fixes # (issue)
Type of change
Check List
If you face the below error when you sign up, you have to wait about an hour.... 😓
Because, this error is caused by Supabase Auth api rate limit.
Supabase Auth rate limit
https://supabase.com/docs/guides/platform/going-into-prod#auth-rate-limits
URL
Screenshot