404: NOT_FOUND Code: NOT_FOUND ID: iad1:iad1::bwbst-1732155841167-d75fd6006841

Project Information

Steps to Reproduce

  1. Push changes to GitHub repository
  2. Deploy through Vercel platform
  3. 404: NOT_FOUND Code: NOT_FOUND ID: iad1:iad1::bwbst-1732155841167-d75fd6006841

There’s another community post with 404 debugging tips that might be helpful. Please give these solutions a try and let us know how it goes.

A human should be around soon to offer more advice. But you can also get helpful information quickly by asking v0.

@rekflow It looks like the “Configuration Settings in the current Production deployment differ from your current Project Settings.” Can you please check your configuration settings and Vercel.json and check if both matches.

Thank you @neerajkumar61. I’ve tried troubleshooting how to fix this discrepancy but I’ve come up empty. Here is what is in my vercel.json file

{
  "version": 2,
  "builds": [
    {
      "src": "frontend/package.json",
      "use": "@vercel/next"
    },
    {
      "src": "api/index.py",
      "use": "@vercel/python",
      "config": {
        "maxLambdaSize": "15mb",
        "runtime": "Python 3.12.4"
      }
    }
  ],
  "routes": [
    {
      "src": "/api/(.*)",
      "dest": "/api/index.py"
    }
  ],
  "rewrites": [
    {
      "source": "/api/:path*",
      "destination": "/api/index.py"
    },
    {
      "source": "/(.*)",
      "destination": "/frontend/$1"
    }
  ]
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.