r/vercel

why do i get like this
▲ 2.9k r/vercel+27 crossposts

why do i get like this

For anyone wondering, the app I'm working on is https://www.AppScout.co.

It helps people discover web and mobile apps from across the internet by showing them one app at a time. People like apps in order to get personalized app recommendations.

If you run a software startup or side project, you can list it for free to get free extra traffic here:https://www.appscout.co/submit/

(Affiliation Disclosure: I'm the sole creator and developer behind AppScout.)

u/Healthy_Flatworm_957 — 3 days ago
▲ 2 r/vercel

Seems to be an issue with the Github connection

I'm now unable to login with Github, prior to that I was trying to set up a project from a Github Repo and the connector failed to load in. Gitlab and Gitbucket seemed unaffected by the issue.

reddit.com
u/bb_dev_g — 3 days ago
▲ 9 r/vercel+1 crossposts

🚨 Bag/UI has officially outgrown Vercel’s free bandwidth limit.

This is a milestone I’m proud of — but it also comes with a challenge.

Bag/UI is Open Source and free for everyone, and I want to keep it that way.
However, hosting and bandwidth aren’t free anymore. With the project’s growing traffic, I now need to move to Vercel’s Pro plan to keep Bag/UI fast, reliable, and available to everyone.

If you’ve been using Bag/UI, starring the repository, sharing it, or building with its components, this is a great time to support the project.

💙 Become a sponsor and help keep Bag/UI running.

Your sponsorship directly helps cover infrastructure costs and gives me the ability to keep investing time into new components, improvements, and the long-term development of the project.
Even a small contribution makes a difference.

👉 https://www.bagui.pro/pricing

Open Source should stay accessible to everyone. Help me keep it that way. 🙏

u/anelkabag — 5 days ago
▲ 10 r/vercel+12 crossposts

Serverless Bill Shock: Tracking Edge Function and Database Expirations (Vercel, Supabase, Netlify, Neon)

For over two decades, agency hosting economics were beautifully predictable. You bought a reseller web server or dedicated cPanel account for $50 a month, crammed 30 client WordPress sites onto it, and charged each client a flat $25 monthly maintenance fee. Your margins were clear, your server bills were static, and billing surprises were virtually non-existent. Read the comple te article here > Serverless Bill Shock: Track Vercel & Supabase Client Costs | InstaRenewal

Then came the modern web stack.

Driven by the demand for lightning-fast digital experiences, agencies aggressively migrated to decoupled architectures: Next.js, Nuxt, Vercel, Supabase, Cloudflare Workers, and serverless databases like Neon. While the performance gains of this modern paradigm are undeniable, it introduced a chaotic operational reality: micro-subscription fragmentation and variable utility billing.

u/JadeLuxe — 5 days ago
▲ 2 r/vercel

Production domain expired after account deletion - need support case escalation

My production domain was registered through Vercel. I deleted my Vercel account without transferring it out (i thought i did) - auto-renew died with the account, and I had no idea.

It expired 2026-08-14, it's now on clientHold, and my entire SaaS and email are offline. Paying customers locked out for days.

I can't fix this myself: no account to log into, the registrar (Tucows) says talk to Vercel, and my support case: 011cQNIWD79A5KRZ, is sitting in the Hobby queue.

I just need ONE of these:

  1. Renew the domain — I'll pay the second someone responds
  2. The transfer auth code so I can move it to another registrar

I can prove ownership instantly (original account email, invoices, DNS zone control). Still in the renewal grace period, but the redemption clock is running.

If anyone from Vercel sees this — please, a two-minute account review is all this needs.

reddit.com
u/aniumat — 5 days ago
▲ 2 r/vercel

Someone help me please!!!

https://preview.redd.it/9u1jvc70nbjh1.png?width=481&format=png&auto=webp&s=324c8922ef081aef2653c6f226ebad88ede9017f

I created an account but made a mistake in the setup, so I deleted that account. It was continued with the Google option for that email. And after deleting my account, I tried to log in and sign up both, but it's showing me this. Is there any chance to get back this account? It's too important to recover this.

reddit.com
u/InsideTraditional187 — 6 days ago
▲ 1 r/vercel

locked out of my vercel account for 4 days (pro), no response

misplaced 2fa codes, tried every way possible to access my account, opened 2 tickets Case number 01412003 and another and requsted a recovery through the form on the site twice while entering all my details (git hub account user act(, im a paying costumer and would at least expect a response from a human in 4 days

reddit.com
u/Infamous-Platform304 — 8 days ago
▲ 2 r/vercel

Your Vercel preview is a per-PR QA environment that almost nobody opens. We built something that opens it.

Disclosure: I work on this, it is our product IronBee, link at the bottom.

Every PR on Vercel already gives you a complete running copy of the app, isolated, one per change. That is the QA environment teams have wanted forever, and almost nobody opens the URL. The reviewer reads the diff and merges.

So we built an agent that opens it and uses the product. It reads the change, works out what a user would do differently because of it, and does that. No scripts, no selectors to maintain.

Two parts that were harder than expected:

Not stopping at "it failed". We read OpenTelemetry from the app and ship an SDK for runtime introspection, so a finding is the failing request, the query that returned nothing, the exception logged at info, and the line in the diff.

Not trusting the agent. Ask an LLM to test a changeset and it will tell you it did. That is a claim, not evidence. We trace what actually executes during the run and check the changed lines mechanically. If part of the change never executed, we do not pass it.

It also runs in GitHub Actions for services that never get a URL.

Happy to answer anything technical. If it misses something obvious on a real PR, I would rather hear that.

IronBee - Vercel Integration

Announcement post: https://medium.com/ironbee/your-ai-qa-engineer-now-runs-on-every-vercel-preview-16ca2d9dc03a

reddit.com
u/Shot-Ad-9074 — 7 days ago
▲ 18 r/vercel+5 crossposts

Can you tear apart my authorization model for self serve DAST?

I made a deeper security scanner self serve and I’m not totally convinced the permission model is enough.

Right now:

  • domain gets verified through DNS or a file on the domain
  • repo gets verified separately through our GitHub App
  • user signs the exact target and checks
  • ownership gets checked again before it runs
  • DAST is bounded and rate limited
  • repo analysis runs in isolation
  • authenticated testing only uses two throwaway users
  • credentials are deleted after

We built this because our old free scanner only checked the logged-out surface. A clean result could make someone think the app was safe while completely missing broken access control.

So what are we missing here?

Verification expiry? CNAMEs? Subdomain takeover? DNS rebinding? A malicious target attacking the runner? Compromised GitHub installs?

Also, is there any test you just wouldn’t allow without a human approving it first?

https://www.task-bounty.com/secure-my-app#deep-review

Feel free to be harsh. Better now than after someone actually abuses it.

u/elidanipipe — 9 days ago
▲ 0 r/vercel

I will be telling everyone I can to not use this service

When I want to make a commit to my GitHub: Vercel, your job is to deploy the thing. That's it. Your one, lone job. The fact that you check whether the user making the commit has a GitHub account authorized with Vercel and is on my members team so you can charge $20/month extra for (on top of my pro account billing) is like you've been bought out by private equity already and forgot your one job.

I spent the past ninety minutes dealing with this wild goose chase only to find out that there's literally no way around this check on private repositories because of your nickle-diming billing nonsense. Even tried roundabout webhooks through GitHub. Nope. I'm done. Project cancelled. Pro account cancelled. I control Vercel for another client that does $30K/year in business with you. I've realized that the way you do business is not in line with our strategic objectives. I'll be moving to Cloudflare pages on general F-is-for-exactly-what-you-think it is principle.

Cloudflare pages. Netlify. Google firebase. Render. Anyone who will listen will hear these names whenever Vercel is mentioned. That's not a threat: it's a promise sworn on an altar of pagan talismans with a blood sacrifice to the old gods.

reddit.com
u/SocraticLogic — 10 days ago
▲ 17 r/vercel+1 crossposts

Vercel free tier almost maxed out because of Claude's AI bot. Is this normal or did I mess something up?

I run a small Next.js 16 site, cocbaselinks.com. Not much real traffic. But my Vercel usage this month is scary close to the Hobby (free) limits:

  • Fluid Active CPU: 3h 23m / 4h
  • Fast Origin Transfer: 6.5 GB / 10 GB
  • Function Invocations: 265K / 1M
  • Edge Requests: 249K / 1M

I checked the logs and almost all of it is claudebot (Anthropic's AI crawler), 46K out of 58K requests in just 12 hours, all hitting a batch of new SEO pages I added a couple days ago.

Turns out those pages had a caching bug, a tiny per-user part (bookmark icons) was accidentally making Next.js treat the entire page as dynamic, so every single bot visit skipped the cache and did a full expensive render. I think I fixed it, but I'm honestly not sure if this is a "welcome to running a real website" problem or something I should be more worried about.

Has anyone else been getting hit hard by AI crawlers like this? And is it normal for a small site to eat this much of the free tier that fast, or does this usage look off to you?

u/Bilawal-Mehfooz — 11 days ago
▲ 2 r/vercel

Why is Vercel Falsely Claiming to have built my website?

While doing some SEO review today I discovered Vercel has created https://bookchant.vercel.app/ which is a very poorly imitated version of my website https://bookchant.com/ which it is claiming to be a "premium frontend demo for BookChant" which it 100% is not because Vercel was not used to build my website.

I'd like very much to know how to have Vercel remove this page falsely claiming to be related to my website.

reddit.com
u/Charlemagneffxiv — 13 days ago
▲ 1 r/vercel

How do you usually deploy your AI-built websites?

What do you use most for deploying websites you build with AI?

Vercel, Netlify, built-in deployment from tools like Base44 or Bolt, Cloudflare, or something else?

What makes you prefer it?

reddit.com
u/orelrevivo — 10 days ago
▲ 2 r/vercel

Shared env

Let's say I have shared envs that has NEXT_PUBLIC_GOOGLE_MAPS_API, and it is shared amongst 10 websites.

If I change the key and then want to make the sites use the new key, will I need to redeploy every single site, or do nothing and they will automatically start using the new key?

Hope that makes sense and TIA.

reddit.com
u/afrk — 13 days ago
▲ 2 r/vercel

Difference in Next.js SEO when not deploying on Vercel?

Has anyone noticed a difference in SEO when deploying your Next.js app somewhere other than Vercel?

I'm looking at alternatives to Vercel for my Next.js app and am interested in what others have experienced when it comes to this.

reddit.com
u/Perfect-Scale902 — 12 days ago