Next.js Discord

Discord Forum

Issues with 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. Couldn't figure out what is the issue
The only diff was package.json, package-lock.json and next-config.js

In the next-config.js: removed

 experimental: {
    appDir: true,
  },


/** @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;

3 Replies

The only thing update here in the package.json is next verion to: "next": "13.5.9"

Any idea why it's failing ?
Asian black bear
You need to share the error. We can't miraculously guess what it is.
@Asian black bear
https://nextjs-forum.com/post/1354320941991071897#message-1354320941991071897

This is the initial thread I talked about this matter
But seems like my initial guess is wrong
Because when I check the logs I saw the same errors even before we switch to 13.5.9

I'm sorry for not being detailed about the issue, since I'm not a guy with AWS background I didn't know how can I debug it and give you more info 😕
I attached the errors that I get in the cloudwatch logs
If you need more info I can provide