How to deploy an application made in node.js on wappler on vercel?

I would like to know if anyone has already managed to deploy their node.js applications on Vercel, I have applications made on Wappler and would like to deploy them there. I've seen some documentation stating that I have to create a vercel.json file with some parameters like these:

{
"version": 2,
  "builds": [
  {
    "src": "/lib/server",
    "use":"@vercel/node"  
  }    
  ],
"routes": [
  {
  "src": "(.*)",
  "dest": "/lib/server"    
  }  
]  
}

But nothing works, can anyone shed some light on this?

@Teodor