this is the now.json
{
"version": 2,
"name": "nestjs-now",
"builds": [
{
"src": "dist/main.js",
"use": "@now/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "dist/main.js"
}
]
}
I'm not sure what's the reason and how to fix. I just followed the vercel tutorial to deploy my nestjs backend project, but don't works. It inclues GraphQL APIs and Rest APIs together as well as socket.io server.
