forked from vercel/og-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnow.json
46 lines (46 loc) · 953 Bytes
/
now.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "og-image-egghead-course",
"alias": [
"og-image-egghead-course.now.sh"
],
"version": 2,
"regions": [
"all"
],
"public": true,
"builds": [
{
"src": "public/**",
"use": "@now/static"
},
{
"src": "package.json",
"use": "@now/static-build"
},
{
"src": "src/card.ts",
"use": "@now/node@canary",
"config": {
"maxLambdaSize": "36mb"
}
}
],
"routes": [
{
"src": "/",
"dest": "/public/index.html"
},
{
"src": "/(favicon.ico|style.css|robots.txt)",
"dest": "/public/$1"
},
{
"src": "/dist/browser.js",
"dest": "/browser.js"
},
{
"src": "/(.+)",
"dest": "/src/card.ts"
}
]
}