What Is Vercel? And Why Slim Minima Runs on It

Vercel is where a Slim Minima site lives on the internet. Here is what it does, why we recommend it, and the one free-plan rule client work has to respect.

Glowing blue fiber optic strands fanning out in the dark, representing the global network that delivers a website to visitors

When you build a Slim Minima site, the code has to live somewhere a browser can reach it. That somewhere, by default, is Vercel. It is the part of the stack most people never think about until a client asks where their website actually runs.

The short version: Vercel is a hosting platform built for modern websites, made by the same company that builds Next.js, the framework Slim Minima is written in. You connect a GitHub repository, and every time you push a change, Vercel builds the site and puts the new version online. No servers to manage, no manual uploads.

This article explains what Vercel does, how it fits a Slim Minima site, and the one rule about the free plan that matters for client work. Figures came from Vercel's official pricing and plan pages, checked in June 2026.

What Vercel actually does

Vercel hosts your site and handles everything around getting it to a visitor.

  • It serves your pages. When someone visits your address, Vercel sends them the site from a global network of servers, so a visitor in Singapore and a visitor in London both get a copy from somewhere near them.
  • It deploys from GitHub. Push your code, and Vercel builds it and goes live automatically. You do not log into a server or copy files by hand.
  • It gives every change a preview. Each push gets its own temporary URL you can open and check before it reaches the real site. Make an edit, get a link, look at it, then promote it.
  • It handles HTTPS and the domain. Vercel issues the security certificate and points your domain at the site for you.
  • It runs the server-side parts. A Slim Minima admin panel, the contact form handler, and the scheduled cleanup job all run as small functions on Vercel, only when they are needed.

The reason this matters is that you get the behaviour of a properly managed server without becoming a server administrator. That is the whole point of self-hosting that does not turn the owner into a DevOps engineer.

How Vercel works with Slim Minima

A Slim Minima site is a Next.js application, and Vercel is the reference home for Next.js. That pairing removes almost all of the setup.

The flow looks like this:

  1. Your site's code lives in a GitHub repository the client owns.
  2. You connect that repository to a Vercel project once.
  3. Every push to the main branch triggers a build. The build runs the database migrations first, then compiles the site.
  4. If the build passes, the new version goes live. If it fails, the broken version never ships and the old one keeps serving.

Your secrets, like the database connection string and the image account keys, are stored in the Vercel project settings rather than in the code. Vercel also runs the daily media cleanup on a schedule, so trashed images are eventually removed without you doing anything.

The result is that shipping a change to a Slim Minima site is just a git push. The client never sees any of this. They open the admin panel, edit a page, and the change is live.

Why we recommend Vercel

Vercel is the default for a few honest reasons, not because it is the only option.

  • It is built by the Next.js team. Slim Minima runs on Next.js, so the host that knows the framework best needs zero configuration to run it correctly.
  • Preview deployments are genuinely useful. Being able to hand a client a link to an unpublished change, before it touches the live site, saves a lot of back and forth.
  • The free plan is real. For a personal or non-commercial site, the Hobby plan covers a serious amount of traffic at no cost.
  • It is simple to hand over. The client ends up owning a standard Next.js project on a standard host. Any competent developer can pick it up.

None of this is lock-in. A Next.js site can also run on Netlify, Cloudflare, a Node server, or a container you manage yourself. Moving it takes some changes to the build setup, but with an AI coding agent like Claude Code or Codex, that kind of adjustment is straightforward. Vercel is the path of least resistance, not a cage.

The free plan, and the catch most people miss

Vercel's free tier is called Hobby. On Hobby you get, per month:

  • 100 GB of data transfer to visitors
  • 1 million function invocations
  • 1 million edge requests
  • 100 deployments per day
  • 200 projects

For a small marketing site, those numbers are far more than you will use. The deeper breakdown of how that translates into page views sits in how far the free stack stretches, so this article will not repeat it.

The catch is not a number. It is a rule. The Hobby plan is for non-commercial use only. A personal blog or a portfolio is fine. A website you built for a paying client, or any site that makes money, is commercial use, and that belongs on the Pro plan.

This is the part most "free hosting" articles quietly skip. If you build sites for clients on Slim Minima, the honest answer is that the client's site should be on Vercel Pro, which starts at 20 US dollars per month per seat and explicitly permits commercial use. That is not a Slim Minima cost.

It is the going rate for hosting a real business website, and it is still cheaper than most managed WordPress hosting.

So the truthful pitch to a client is this: the software is free, the database and media start free, and hosting a real commercial site costs about 20 dollars a month. No surprises later.

When you would upgrade

Move from Hobby to Pro when any of these is true:

  • The site is for a business or a paying client. This one applies from day one.
  • You consistently push past the Hobby transfer or function limits.
  • You want team members with their own access, longer logs, or password-protected previews.

For a hobby project that genuinely stays personal, you may never need to pay. For client work, treat Pro as the starting line.

Frequently asked questions

Is Vercel free? There is a free plan called Hobby that covers a lot of traffic at no cost, with no credit card required to start. It is restricted to non-commercial use. A site for a business or a paying client should be on the Pro plan, which starts at 20 US dollars per month per seat and allows commercial use.

Do I have to use Vercel to run a Slim Minima site? No. Slim Minima is a standard Next.js application, so it can run on other hosts such as Netlify, Cloudflare, or a server you manage. Vercel is the default because it needs no configuration and is built by the Next.js team. Switching hosts takes some build changes but is very doable with an AI coding agent.

What happens when I push a change to my site? Vercel builds the new version, applies any pending database migrations, and only goes live if the build succeeds. If the build fails, your existing site keeps running untouched. Every push also gets its own preview URL so you can check a change before promoting it.

Does the client own the Vercel account? They can. The codebase lives in the client's GitHub repository, and the Vercel project can sit under the client's own account. The site, the code, and the hosting all belong to them, with no template or middleman in between.

Is 20 dollars a month the only cost? For most small sites the recurring costs are Vercel Pro for commercial hosting and a domain name of a few dollars a year. The database and image hosting usually stay within their free tiers until the site grows. There is no Slim Minima license fee at any point.

Related reading

My verdict

Vercel is the right default for a Slim Minima site because it removes the entire category of server work without taking ownership away from the client. The one thing to be upfront about is the commercial-use rule: real client sites belong on Pro at around 20 dollars a month. Say that early, and there are no awkward surprises down the line.

#what is vercel#vercel hobby plan#vercel for nextjs#vercel free tier