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