From acebbcfb5644b62d59f1adfb68d7350f50121718 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 13 Jul 2025 20:58:21 -0400 Subject: [PATCH] getting envs to work --- next.config.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/next.config.js b/next.config.js index 51ba9a5..a156acd 100644 --- a/next.config.js +++ b/next.config.js @@ -1,7 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - reactStrictMode: true, - } - - module.exports = nextConfig - \ No newline at end of file + reactStrictMode: true, + env: { + NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL, + }, +}; + +module.exports = nextConfig; \ No newline at end of file