nayounsang
(Nayounsang)
1
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
system
(system)
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.
pawlean
(Pauline P. Narvas)
3
Hi, @nayounsang!
We also shipped this express community post, might be helpful 
system
(system)
Closed
4
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.