Beginner's Guide to Vercel: Getting Started in 2026

Beginner's Guide to Vercel: Getting Started in 2026

Vercel getting started guide for beginners — deploy your first site on the free Hobby plan and connect a custom domain without touching a server. Ship today.

web-hostingfree-tierdeploymentnextjsdeveloper-tools

Publishing a site used to mean wrestling with servers, FTP clients, and complex build scripts. For beginners in 2026, the process is radically simpler. If you want to learn how to deploy a website on Vercel for beginners, this guide walks you through the free Hobby plan, from signup to a live, custom-domain site.

Verdict

The Vercel free Hobby tier is one of the most generous and frictionless ways to deploy a personal project or portfolio site. For individual developers and learners, it’s more than worth it; for commercial or client work, you must upgrade to the Pro plan.

How This Guide Was Built

This guide is based on the official Vercel documentation, the Vercel pricing page, and the Vercel changelog. We verified: free tier limits, signup flow, first deploy steps, and custom domain setup. We did not test paid Pro features — steps for those are based on official docs. Last verified: August 2026.

What is Vercel?

Vercel is a cloud platform for frontend developers. It provides hosting and serverless backend infrastructure, optimized for frameworks like Next.js, SvelteKit, and Astro. Its core workflow connects directly to your Git repository, automatically building and deploying your site with every push.

How do I deploy a website on Vercel for beginners?

You can deploy your first website on Vercel in under five minutes by signing up with your Git provider, importing your project repository, and letting Vercel’s automated build system handle the rest. The platform auto-detects your framework, builds the site, and assigns you a live preview URL instantly.

Follow these steps to go live:

  1. Sign Up for Free Go to vercel.com/signup and create an account using your GitHub, GitLab, or Bitbucket credentials. This links your code source directly to Vercel.

  2. Import Your Project After logging in, navigate to your dashboard and click “Add New… Project.” Select “Import Git Repository” and choose the repository you want to deploy. Source: Vercel Docs - Getting Started

  3. Configure and Deploy Vercel will auto-detect your framework (like Next.js). For most projects, the default build settings are correct. Click “Deploy.” Within a minute, your site will be live at a URL like your-project-name.vercel.app.

    Alternative: Deploy from your terminal

    # Install the Vercel CLI globally
    npm i -g vercel
    
    # Log in to your Vercel account
    vercel login
    
    # Deploy from your project directory (for preview)
    vercel
    
    # Deploy to production
    vercel --prod
  4. Add a Custom Domain In your project dashboard, go to Settings → Domains. Enter your domain name (e.g., example.com).

    • For an apex domain (example.com), add an A record pointing to 76.76.21.21.
    • For a subdomain (www.example.com), add a CNAME record pointing to cname.vercel-dns-0.com. Vercel will automatically provision a free SSL certificate and enable HTTPS redirect. Source: Vercel Docs - Custom Domains

Vercel Free Tier Limits

The Hobby plan is designed for personal, non-commercial use. It is not for client or business projects. Exceeding a limit pauses the relevant feature; there is no overage billing on the Hobby plan. Source: Vercel Pricing, Vercel Docs - Hobby Limits

Feature Hobby (Free) Allocation
Bandwidth (Fast Data Transfer) 100 GB / month
Origin Transfer 10 GB / month
Edge Requests 1,000,000 / month
Serverless Function Invocations 1,000,000 / month
Active CPU 4 CPU-hours / month
Provisioned Memory 360 GB-hours / month
Projects 200
Deployments per Day 100
Build Time (per deployment) 45 minutes max
Concurrent Deployments 1
Domains per Project 50
Image Transformations 5,000 / month
Web Analytics Events 50,000 / month
Speed Insights Events 10,000 / month
Deployment Retention 30 days (for old deployments)
Runtime Logs Retention 1 hour

Common Mistakes Beginners Make

1. Using Hobby for Commercial Work The Hobby plan is strictly for personal, non-commercial projects. Deploying a client site, business portfolio, or any money-making venture violates the fair use policy and risks suspension.

2. Hotlinking Large Media Files If you host large video or audio files on Vercel and link to them from other sites, you can quickly burn through your 100GB bandwidth cap, which will pause your project until the month resets.

3. Treating Preview URLs as Permanent Since April 2026, old deployment URLs are automatically deleted after 30 days on the Hobby plan. Do not use preview URLs for permanent links; always set up a custom domain for long-term access.

4. Exhausting Compute on Every Request Running heavy computation in serverless functions for every single page visit can rapidly consume your 4 CPU-hour and 1 million invocation limits. Optimize your functions or use edge caching.

5. Misconfiguring Environment Variables Setting an environment variable for the “Preview” environment but not “Production” can break your live site after you merge to the main branch. Always check both environments in your project settings.

Beyond the First Deploy

Once your site is live, a few habits separate a smooth free-tier experience from a frustrating one. These aren’t hard requirements, but they will keep you comfortably inside the Hobby limits.

Use Vercel’s built-in previews for every change. Every push to a pull request produces its own preview URL, which lets you test changes before they touch production. This costs nothing extra on the Hobby plan and is the fastest way to catch build errors early.

Watch the usage dashboard. Vercel’s dashboard shows your current month’s bandwidth, edge requests, and function invocations in real time. Checking it after heavy release weeks tells you whether you are close to a limit before you hit it — the limit enforcement pauses the relevant feature rather than billing you, per the Hobby limits documentation.

Set a custom domain even for experiments. Because preview URLs expire after 30 days, anything you want to share for more than a month needs a real domain. Adding one is free on Hobby and takes less than a minute using the A record for apex domains or CNAME for subdomains, as shown in the custom domains guide.

Keep builds lean. The Hobby plan allows up to 45 minutes of build time per deployment, but smaller builds deploy faster and leave headroom for the 100 deployments-per-day cap. If your site uses Next.js, the automatic build cache means most rebuilds are incremental rather than from scratch.

Know what a paused project means. When you hit a Hobby limit, Vercel pauses the affected feature instead of charging you — the project stays on disk, and it resumes automatically at the start of the next billing cycle. That means a paused project is not data loss; it is a soft reset. If this happens to a production site you care about, the pragmatic move is to reduce usage (compress images, add caching, or trim heavy pages) rather than upgrading to Pro immediately.

FAQ

Is Vercel free forever?

Yes, the Vercel Hobby plan is a free tier designed for personal use. There is no time limit, but Vercel reserves the right to update its limits or terms, as they did with deployment retention in April 2026. It remains free for eligible projects.

Can I use the Vercel free plan for a client or business?

No. The Hobby plan’s fair use policy specifies it is for “personal, non-commercial use only.” Any project used for business, monetization, or client work requires a paid Pro plan, which starts at $20/month.

What happens if I go over Vercel’s free limits?

If you exceed a specific limit (like bandwidth or function invocations), Vercel will pause that feature or your project’s deployment. It will not bill you for overages. Your project remains paused for roughly 30 days or until the next billing cycle resets your usage.

Where to Go Next

You’ve successfully deployed your site on Vercel. To expand your free-tier toolkit, explore these related guides:

For a complete tool comparison and to save this platform for later, visit the StacksFree directory entry for Vercel.

References

[1] vercel.com/signup [2] Source: Vercel Docs - Getting Started [3] Source: Vercel Docs - Custom Domains