-
Notifications
You must be signed in to change notification settings - Fork 9
/
now.json
31 lines (31 loc) · 930 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
{
"version": 2,
"name": "vue-warehouse",
"alias": "vue-warehouse-examples.aceforth-opensource.now.sh",
"builds": [
{ "src": "examples/**/*.html", "use": "@now/static" },
{ "src": "examples/robots.txt", "use": "@now/static" },
{
"src": "examples/server.js",
"use": "@now/node-server",
"config": {
"maxLambdaSize": "50mb",
"bundle": false
}
}
],
"routes": [
{ "src": "/", "dest": "/examples/index.html" },
{ "src": "/advanced", "dest": "/examples/advanced/index.html" },
{ "src": "/basic", "dest": "/examples/basic/index.html" },
{ "src": "/vuex-synchronization", "dest": "/examples/vuex-synchronization/index.html" },
{ "src": "/robots.txt", "dest": "/examples/robots.txt" },
{
"src": "/(.*)",
"dest": "/examples/server.js",
"headers": {
"cache-control": "public, s-maxage=86400, max-age=600"
}
}
]
}