Next.js Discord

Discord Forum

Having deployment issues after upgrading to 13.5.9

Unanswered
inam posted this in #help-forum
Open in Discord
After upgrading from Next.js 13.3.1 to 13.5.9, our deployment is failing with a recursive environment variable error:

⨯ Failed to load env from /app/.env RangeError: Maximum call stack size exceeded
2025-03-25T11:44:32.098Z at RegExp.exec (<anonymous>)
2025-03-25T11:44:32.098Z at /app/node_modules/@next/env/dist/index.js:1:191
2025-03-25T11:44:32.098Z at Array.reduce (<anonymous>)
2025-03-25T11:44:32.098Z at _interpolate (/app/node_modules/@next/env/dist/index.js:1:125)
2025-03-25T11:44:32.098Z at /app/node_modules/@next/env/dist/index.js:1:497
2025-03-25T11:44:32.098Z at Array.reduce (<anonymous>)
2025-03-25T11:44:32.098Z at _interpolate (/app/node_modules/@next/env/dist/index.js:1:125) 2025-03-25T11:44:32.098Z at /app/node_modules/@next/env/dist/index.js:1:497
2025-03-25T11:44:32.098Z at Array.reduce (<anonymous>)
2025-03-25T11:44:32.098Z at _interpolate (/app/node_modules/@next/env/dist/index.js:1:125) 2025-03-25T11:44:32.215Z

▲ Next.js 13.5.9

2025-03-25T11:44:32.215Z - Local: http://ip-10-0-252-81.ec2.internal:3000
2025-03-25T11:44:32.215Z - Network: http://10.0.252.81:3000
2025-03-25T11:44:32.215Z
✓ Ready in 614ms



Key details:
- The app builds successfully locally with npm run build
- We deploy using AWS App Runner with Docker containers
- No changes were made to our deployment configuration
- The error specifically occurs during environment variable loading in the deployed environment

We suspect there might be a change in how Next.js 13.5.9 handles environment variable interpolation. Has anyone encountered similar issues after upgrading? Any suggestions for debugging or fixing this recursive environment variable problem?

11 Replies

@inam After upgrading from Next.js 13.3.1 to 13.5.9, our deployment is failing with a recursive environment variable error: ⨯ Failed to load env from /app/.env RangeError: Maximum call stack size exceeded 2025-03-25T11:44:32.098Z at RegExp.exec (<anonymous>) 2025-03-25T11:44:32.098Z at /app/node_modules/@next/env/dist/index.js:1:191 2025-03-25T11:44:32.098Z at Array.reduce (<anonymous>) 2025-03-25T11:44:32.098Z at _interpolate (/app/node_modules/@next/env/dist/index.js:1:125) 2025-03-25T11:44:32.098Z at /app/node_modules/@next/env/dist/index.js:1:497 2025-03-25T11:44:32.098Z at Array.reduce (<anonymous>) 2025-03-25T11:44:32.098Z at _interpolate (/app/node_modules/@next/env/dist/index.js:1:125) 2025-03-25T11:44:32.098Z at /app/node_modules/@next/env/dist/index.js:1:497 2025-03-25T11:44:32.098Z at Array.reduce (<anonymous>) 2025-03-25T11:44:32.098Z at _interpolate (/app/node_modules/@next/env/dist/index.js:1:125) 2025-03-25T11:44:32.215Z ▲ Next.js 13.5.9 2025-03-25T11:44:32.215Z - Local: http://ip-10-0-252-81.ec2.internal:3000 2025-03-25T11:44:32.215Z - Network: http://10.0.252.81:3000 2025-03-25T11:44:32.215Z ✓ Ready in 614ms Key details: - The app builds successfully locally with `npm run build` - We deploy using AWS App Runner with Docker containers - No changes were made to our deployment configuration - The error specifically occurs during environment variable loading in the deployed environment We suspect there might be a change in how Next.js 13.5.9 handles environment variable interpolation. Has anyone encountered similar issues after upgrading? Any suggestions for debugging or fixing this recursive environment variable problem?
console.log(process.env); this way we call

First, check .env exists and if exists check not Circular References

nano /path/to/.env
// confirm your variables that exist or not
@DEV_2.0 We didn't do any other change than updating the next version to 13.5.9
Before that it was working fine
@inam Maybe you are accessing envs on the Client Side.

env just works on the Server Side. To access env in Client Side, you need to declare in the next.config.js

This way:

module.exports = {
env: {
BASE_URL: process.env.BASE_URL,
}
}
# Base image
FROM node:18-alpine AS base

# Dependencies stage
FROM base AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app

# Private registry authentication
ARG PRIVATE_REGISTRY_USER
ENV PRIVATE_REGISTRY_USER=$PRIVATE_REGISTRY_USER
ARG PRIVATE_REGISTRY_PASSWORD
ENV PRIVATE_REGISTRY_PASSWORD=$PRIVATE_REGISTRY_PASSWORD
ARG PRIVATE_REGISTRY_EMAIL
ENV PRIVATE_REGISTRY_EMAIL=$PRIVATE_REGISTRY_EMAIL

# NPM configuration for private registry
RUN npm config set @private-scope:registry https://private-registry.example.com/
RUN echo "//private-registry.example.com/:_password=${PRIVATE_REGISTRY_PASSWORD}" >> ~/.npmrc && \
    echo "//private-registry.example.com/:username=${PRIVATE_REGISTRY_USER}" >> ~/.npmrc && \
    echo "//private-registry.example.com/:email=${PRIVATE_REGISTRY_EMAIL}" >> ~/.npmrc && \
    echo "//private-registry.example.com/:always-auth=true" >> ~/.npmrc

# Install dependencies
COPY package.json package-lock.json* ./
RUN if [ -f package-lock.json ]; then npm ci; else echo "Lockfile not found." && exit 1; fi
RUN rm -f .npmrc

# Builder stage
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .

# Environment variables for build
ENV NEXT_TELEMETRY_DISABLED 1

# Build arguments and environment variables
ARG API_BASE_URL
ENV API_BASE_URL=$API_BASE_URL
ARG GOOGLE_CLIENT_ID
ENV GOOGLE_CLIENT_ID=$GOOGLE_CLIENT_ID
# ... other ARG/ENV pairs (generic examples)

RUN npm run build

FROM base AS runner
WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1

RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs

COPY --from=builder /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static

USER nextjs
EXPOSE 3000
ENV PORT 3000
CMD ["node", "server.js"]
- .env (template with variable references) (this is committed to the repo)
NEXT_PUBLIC_API_URL=$API_BASE_URL
NEXT_PUBLIC_GOOGLE_CLIENT_ID=$GOOGLE_CLIENT_ID
NEXT_PUBLIC_LINKEDIN_CLIENT_ID=$LINKEDIN_CLIENT_ID
# ... other variables


- .env.local (this is not committed to the repo)
NEXT_PUBLIC_API_URL=http://localhost:3001
NEXT_PUBLIC_GOOGLE_CLIENT_ID=my-google-client-id
NEXT_PUBLIC_LINKEDIN_CLIENT_ID=my-linkedin-client-id

This is the current setup
Now as per the current setup,

1. Why I'm facing the issue that I mentioned in the previous message?
2. How to fix it?
3. What is the root cause of the issue?
4. Is this the correct way to do it?
My bad after some debugging I figured we have the same error in the other envs as well
We can see the same error in those env cloudwatch logs as well, So I wonder what could be the issue ?

This is our next-config.js

/** @type {import('next').NextConfig} */
const nextConfig = {
  webpack: (config) => {
    config.resolve.alias.canvas = false;
    return config;
  },
  output: "standalone",
  images: {
    domains: [
      "example.com",
      "example-two.com/example",
      "user-content-dev.taxglobal.co",
      "example-three.s3.us-east-1.amazonaws.com",
      "maps.googleapis.com",
    ],
  },
  async redirects() {
    const maintenanceMode = process.env.MAINTENANCE_MODE;
    console.log(`Maintenance Mode is ${maintenanceMode}`);

    if (maintenanceMode === "true") {
      return [
        {
          source: "/((?!maintenance).*)",
          destination: "/maintenance",
          permanent: false,
        },
      ];
    }

    return [
      {
        source: "/maintenance",
        destination: "/",
        permanent: true,
      },
      {
        source: "/resource",
        destination: "/resources",
        permanent: true,
      },
      {
        source: "/giveaway",
        destination: "/",
        permanent: true,
      },
      {
        source: "/giveaway-terms",
        destination: "/",
        permanent: true,
      },
      {
        source: "/users",
        destination: "/profile/user",
        permanent: true,
      },
      {
        source: "/users/:id",
        destination: "/profile/user/:id",
        permanent: true,
      },
    ];
  },
};

module.exports = nextConfig;


Do you spot any issue here ?
If using envirement variables then use like

module.exports = {
  env: {
    NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL,
    NEXT_PUBLIC_GOOGLE_CLIENT_ID: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID,
    NEXT_PUBLIC_LINKEDIN_CLIENT_ID: process.env.NEXT_PUBLIC_LINKEDIN_CLIENT_ID,
  },
//other options will be here bro
};


Also ARG values are only available during the build stage and won't be available to the app during runtime unless you explicitly pass them as ENV variables.
@DEV_2.0 Thanks I will give it a go