forked from xcv58/use-system-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
44 lines (44 loc) · 921 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
{
"name": "use-system-theme",
"builds": [
{
"src": "examples/create-next-app/package.json",
"use": "@vercel/next"
},
{
"src": "examples/create-react-app/package.json",
"use": "@vercel/static-build"
}
],
"build": {
"env": {
"PUBLIC_URL": "/create-react-app"
}
},
"routes": [
{
"src": "/create-react-app/(.*\\.(json|js))",
"dest": "examples/create-react-app/$1"
},
{
"src": "/create-react-app/static/(.*)",
"dest": "examples/create-react-app/static/$1"
},
{
"src": "/create-react-app/{0,1}(.*)",
"dest": "examples/create-react-app/"
},
{
"src": "/create-next-app/{0,1}(.*)",
"dest": "examples/create-next-app/$1"
},
{
"src": "/(.*)",
"dest": "examples/create-next-app/$1"
},
{
"src": "/(.*)",
"dest": "examples/create-next-app/"
}
]
}