-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathvercel.json
53 lines (53 loc) · 1.5 KB
/
vercel.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
47
48
49
50
51
52
53
{
"version": 2,
"name": "react-async",
"public": true,
"builds": [
{
"src": "examples/basic-fetch/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/basic-hook/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/custom-instance/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/movie-app/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/with-abortcontroller/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/with-graphql/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/with-typescript/package.json",
"use": "@now/static-build",
"config": { "distDir": "build" }
},
{
"src": "examples/with-nextjs/package.json",
"use": "@now/next"
}
],
"routes": [
{ "src": "/examples/with-nextjs/_next(.*)", "dest": "examples/with-nextjs/_next$1" },
{ "src": "/examples/with-nextjs/", "dest": "examples/with-nextjs/examples/with-nextjs" },
{ "src": "/examples/with-nextjs(.*)", "dest": "examples/with-nextjs/examples/with-nextjs$1" },
{ "src": "/examples/(.*)", "dest": "/examples/$1" },
{ "src": "(.*)", "dest": "/examples$1" }
]
}