generated from OneGraph/oneblog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
now.json
46 lines (46 loc) · 833 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
{
"version": 2,
"builds": [
{
"src": "build/server.js",
"use": "@now/node"
},
{
"src": "build/public/**/*",
"use": "@now/static"
}
],
"routes": [
{
"src": "/static/(.*)",
"dest": "build/public/static/$1"
},
{
"src": "/favicon.ico",
"dest": "build/public/favicon.ico"
},
{
"src": "/favicon-16x16.png",
"dest": "build/public/favicon-16x16.png"
},
{
"src": "/favicon-32x32.png",
"dest": "build/public/favicon-32x32.png"
},
{
"src": "/robots.txt",
"dest": "build/public/robots.txt"
},
{
"src": "/manifest.json",
"dest": "build/public/manifest.json"
},
{
"src": "/(.*)",
"dest": "build/server.js"
}
],
"env": {
"NODE_ENV": "production"
}
}