Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 19, 2021 09:43 am GMT

Next.js environment variables

A guide on how to use Next.js environment variables

How to create an environment variable for Next.js

First, create a file with a starting in .env.

Depending on the run-time environment, a custom .env file can be created suce as the following:

  • .env.development - when running next dev
  • .env.production - when running next start
  • .env.local - will override .env, .env.development, and .env.production
  • .env.test - when running jest OR cypress
  • host environment variables - AWS, Heroku, Vecel, etc. provide an interface to set environment variables directly

Next, inside the created .env file, add the variables to be used

VARIABLE_NAME=VALUE

This will be accessible via proccess.env

console.log(process.env.VARIABLE_NAME);

Two types of environment variables

  1. Server-side expose variables
  2. Browser exposed variables

1. Server-side variables

Every variable set in an .env* file will be available on the server-side. Including the second type

DB_HOST=secret_hostDB_USERNAME=usernameDB_PASSWORD=password

Above variables can be used in the server-side code such as getStaticProps, getServerSideProps, or in /api

export function getStaticProps() {  connectToDatabase({    host: process.env.DB_HOST,    username: process.env.DB_USERNAME,    password: process.env.DB_PASSWORD,  })}

2. Browser exposed variables

Accessing the sample variables above will yield undefine.
In order to make a variable available to the browser, it should be prepended with NEXT_PULIC_.

NEXT_PUBLIC_GOOGLE_ANALYTICS=abcde12345NEXT_PUBLIC_NOT_SO_SECRET_URL=https://example.com

Even though there will be more keystrokes, I personally like this convention as it gives a clear distinction of what variables are available to the client side.
It is less likely that I will expose any sensitive information to the user.

As per the variables above, it can be used anywhere in React land. For example, setting the Google analytics key.

// _document.tsx<Head> <script  async  src={`https://www.googletagmanager.com/gtag/js?id=${process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS}`} /></Head>

Another usage is for something publicly accessible but should not be committed to the repo.

useEffect(() => {  fetch(`${process.env.NEXT_PUBLIC_NOT_SO_SECRET_URL}`)  // ...})

Although you can still access a browser exposed variable in your server-side code, it will not make sense to do it.

Make sure any sensitive information should not be committed in the repo.

Conclusion

Next.js provides an easy way to set environment variables in any run-time environment. It also provides a good convention to separate variables that can be used on the client-side.


Original Link: https://dev.to/codegino/nextjs-environment-variables-omh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To