forked from sanyaade-iot/next-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
39 lines (39 loc) · 891 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
{
"version": 2,
"alias": "nextjs.org",
"scope": "next-js",
"builds": [{ "src": "www/next.config.js", "use": "@now/next@canary" }],
"routes": [
{
"src": "/learn/?",
"status": 301,
"headers": { "Location": "/learn/basics/getting-started" }
},
{
"src": "/features/?",
"status": 301,
"headers": { "Location": "/features/static-exporting" }
},
{
"src": "/features/ssr/?",
"status": 301,
"headers": { "Location": "/features/server-side-rendering" }
},
{
"src": "/case-studies/?",
"status": 301,
"headers": {
"Location": "/case-studies/hulu"
}
},
{
"src": "/showcase/(?<item>[^/]*)",
"dest": "/www/showcase?item=$item"
},
{
"src": "/feed.xml",
"dest": "/www/_next/static/feed.xml"
},
{ "src": "(.*)", "dest": "/www$1" }
]
}