3 minute read

I’ve got a very handy Next.js project template out there that I am using as the basis of a number of projects.

I host all of these projects on Vercel, because srsly why wouldn’t I. So this morning I pulled one of those low-priority, high-irritation issues off my backlog and discovered two things:

  • My template has a dependency on the Vercel hosting environment, as opposed to the Next.js platform.
  • Vercel’s preview domains don’t exactly work as advertised.

I’ll fix the template, eventually. But meanwhile, this Vercel thing is interesting.

The Setup

If you are reading this, you are probably familiar with the process.env.environment variable. It’s what Node.js uses to identify your runtime environment. In Next.js—which is built on top of Node.js—this is either set to development or production.

Vercel introduces the concept of a preview environment. There are lots of ways to use Vercel, but probably the most common is to connect your Vercel account to GitHub and designate a project branch (e.g. main) as your production branch. Vercel creates a build when you deploy to any GitHub branch and attaches it to a randomized domain. A deployment anywhere but your designated production branch is a preview deployment. You can read this state on the front end at process.env.NEXT_PUBLIC_VERCEL_ENV.

If you’re looking at process.env.NEXT_PUBLIC_VERCEL_ENV on a published branch, its value will either be production or preview. If you’re looking for it in your development environment, it won’t be set—think about it—unless you set it explicitly from an environment file using something like dotenv.

So my Next.js template has a Coming Soon page. To make it work, I have entries in two environment files:

.env.development

# Mimic runtime environment in dev.
NEXT_PUBLIC_VERCEL_ENV=development

# Show/hide coming soon page.
NEXT_PUBLIC_COMING_SOON=0

.env.production

# Show/hide coming soon page.
NEXT_PUBLIC_COMING_SOON=1

Then there’s logic here and here on my _app.jsx page that redirects either toward or away from the Coming Soon page, based on these settings:

const isComingSoon =
  process.env.NEXT_PUBLIC_COMING_SOON === "1" &&
  process.env.NEXT_PUBLIC_VERCEL_ENV !== "preview";

// If app is coming soon, route all traffic to coming-soon endpoint.
if (route !== "/coming-soon" && isComingSoon) redirect(res, "/coming-soon");

// If app is not coming soon, route all coming-soon traffic to home.
if (route === "/coming-soon" && !isComingSoon) redirect(res, "/");

Get it? I can set NEXT_PUBLIC_COMING_SOON to make the Coming Soon page appear (or not) in development or production, but it never appears in preview, because preview. I’m sure there is a way to do this without the dependency on a Vercel-specific environment variable, but so far I haven’t needed one.

The Problem

As I mentioned above, every time you push to a GitHub Branch, Vercel builds your project and deploys it to a unique URL. Two, actually: one is always generated, and another is specific to the attached GitHub branch. For example, if I pushed application myapp to GitHub branch preview-0-3-0, the application would deploy to domains like these:

  • myapp-9z3i9bqtd-myaccount.vercel.app
  • myapp-git-preview-0-3-0-myaccount.vercel.app

This is handy when you want to publish links to preview versions of your application, which—if you use my template—will never display the Coming Soon page.

But I thought I’d be cute.

If you’ve got a domain (e.g. mydomain.com) attached to your Vercel project, Vercel also offers the ability to attach a custom subdomain to your preview branch. So, following the example above, I could create preview-0-3-0.mydomain.com.

Nice, right? The configuration looks like this:

Vercel’s intent with this is clear. Nevertheless, when I visit my new subdomain, what do I see? The Coming Soon page!

Yet when I visit either of the automatically-generated domains, I see the application home page, as expected.

Pretty obvious what is going on here: despite the clear indication that my custom domain is a preview deployment, Vercel has set the NEXT_PUBLIC_VERCEL_ENV environment variable to production.

😐 {: style=”font-size: 3em; text-align:center;”}

The Solution (Kind Of)

I’m not going to go very far out of my way to fix this.

Instead, I’ve opened a ticket with Vercel and hope they will resolve the issue soon. Meanwhile, I’ve altered all my preview deployment links to point to the (way less sexy) automatically generated domains.

There is still the question of the Vercel dependency in my template. I intend to fix this (here’s my own ticket) but I do have some larger fish to fry.

If you want to use my template but the Vercel dependency is a problem for you, feel free to drop a comment below and I’ll bump it up in my queue.

Or, you know, roll up your sleeves and fix it for me! #opensource

Comments