Skip to content

Commit 2b35658

Browse files
authored
It's vercel not now these days
1 parent 8aa3bec commit 2b35658

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zeit-now/python-asgi-on-now-v2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Vercel really wants you to deploy static assets with [serverless functions](http
44

55
It turns out you can subvert that model entirely and route all of your traffic through a single function - great for serving up Python WSGI or ASGI apps that handle traffic routing themselves.
66

7-
the trick is to use the `"routes"` key in a `now.json` file like this:
7+
the trick is to use the `"routes"` key in a `vercel.json` file like this:
88

99
```json
1010
{
1111
"version": 2,
1212
"builds": [
1313
{
1414
"src": "json_head.py",
15-
"use": "@now/python"
15+
"use": "@vercel/python"
1616
}
1717
],
1818
"routes": [

0 commit comments

Comments
 (0)