Closed
Description
On Multi Zones we have this code example:
{
"version": 2,
"builds": [
{ "src": "blog/package.json", "use": "@now/next" },
{ "src": "home/package.json", "use": "@now/next" }
],
"routes": [
{ "src": "/blog/_next(.*)", "dest": "blog/_next$1" },
{ "src": "/blog(.*)", "dest": "blog/blog$1" },
{ "src": "(.*)", "dest": "home$1" }
]
}
Visiting npm @now/next, it says that the package is deprecated and you should use @vercel/next instead. I've never used the multi-zones feature but I presume @vercel/next is correct here?