When entering my express server, vercel login appears

I deployed my express project to vercel.
However, upon entry, authorization… appears and users must sign in or sign up with vercel.

{
  "version": 2,
  "builds": [
    {
      "src": "dist/index.js",
      "use": "@vercel/node"
    }
  ],
  "routes": [
    {
      "src": "/(.*)",
      "dest": "dist/index.js"
    }
  ],
  "buildCommand": "npm run build",
  "installCommand": "npm install",
  "outputDirectory": "dist"
}

This is my vercel.json
My Express project only has a “/” route and only redirects to google.

express 4.21.2

If you’re having trouble deploying an Express app, this guide can help.

You can also ask v0 for suggestions tailored to your own project setup.

Hi, @nayounsang!

We also shipped this express community post, might be helpful :smile:

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