Environment Variables
Environment Variables are a way to store sensitive information that your application needs to function. This could be anything from API keys to Database credentials. Payload allows you to easily use Environment Variables within your config and throughout your application.
Next.js Applications
If you are using Next.js, no additional setup is required other than creating your .env
file.
To use Environment Variables, add a .env
file to the root of your project:
Here is an example of what an .env
file might look like:
To use Environment Variables in your Payload Config, you can access them directly from process.env
:
Client-side Environments
For security and safety reasons, the Admin Panel does not include Environment Variables in its client-side bundle by default. But, Next.js provides a mechanism to expose Environment Variables to the client-side bundle when needed.
If you are building a Custom Component and need to access Environment Variables from the client-side, you can do so by prefixing them with NEXT_PUBLIC_
.
For example, if you've got the following Environment Variable:
This key will automatically be made available to the client-side Payload bundle and can be referenced in your Custom Component as follows:
For more information, check out the Next.js Documentation.
Outside of Next.js
If you are using Payload outside of Next.js, we suggest using the dotenv
package to handle Environment Variables from .env
files. This will automatically load your Environment Variables into process.env
.
To do this, import the package as high up in your application as possible: