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