

As you see, I've deployed my project successfully, and my vercel.json is
{ "rewrites": [ { "source": "/(.*)", "destination": "/index.html" } ]}and this code in hello.cjs
module.exports = function (req, res) { res.status(200).send('Hello from Vercel Serverless Function (CommonJS)!');};when I requst my api, page shows:
Unexpected Application Error!404 Not FoundIt's running in vercel dev. Only fail when deployed to prod.
Of cource in deployment I can see no functions injected, and also I've tried other js format: ts, js .etc It always got fail.
I don't know what happend? vercel env or my dependencies abnormal?
error url: hello api
"/node": "2.10.3",