You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ This builder allows you to run [Deno](https://deno.land) as a lambda on `vercel`
9
9
If you're unfamiliar with `vercel` runtimes, please read the [runtime docs](https://vercel.com/docs/runtimes) first. This runtime can be used like any other Community Runtime.
10
10
11
11
```json
12
-
// now.json
12
+
// vercel.json
13
13
{
14
14
"functions": {
15
15
"api/**/*.{j,t}s": {
@@ -49,10 +49,10 @@ That's the simplest way to use this runtime!
49
49
50
50
### Specific Deno version
51
51
52
-
To use a specific version of Deno you can specify a environment variable in your `now.json`:
52
+
To use a specific version of Deno you can specify a environment variable in your `vercel.json`:
53
53
54
54
```json
55
-
// now.json
55
+
// vercel.json
56
56
{
57
57
"functions": {
58
58
...
@@ -65,10 +65,10 @@ To use a specific version of Deno you can specify a environment variable in your
65
65
66
66
### Unstable mode
67
67
68
-
To use Deno's `unstable` mode you can specify the environment variable `DENO_UNSTABLE` in your `now.json`:
68
+
To use Deno's `unstable` mode you can specify the environment variable `DENO_UNSTABLE` in your `vercel.json`:
0 commit comments