From 5afe30d2f64d7480206486b580fad66a65251643 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Fri, 11 Jun 2021 16:31:22 -0500 Subject: [PATCH] Add Netlify envirnment variables link --- helpers/environment.js | 1 + 1 file changed, 1 insertion(+) diff --git a/helpers/environment.js b/helpers/environment.js index 40a210f..f79fe59 100644 --- a/helpers/environment.js +++ b/helpers/environment.js @@ -4,6 +4,7 @@ import path from 'path' export const isProduction = process.env.NODE_ENV === 'PRODUCTION' +// https://docs.netlify.com/configure-builds/environment-variables/#build-metadata export const isNetlify = process.env.NETLIFY === true export const rootDir = path.resolve(__dirname, '../')