-
Notifications
You must be signed in to change notification settings - Fork 1
/
now.json
40 lines (40 loc) · 941 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
{
"version": 2,
"name": "jats-validator",
"alias": "jats-validator.now.sh",
"scope": "jats4r",
"public": true,
"builds": [
{
"src": "static/index.html",
"use": "@now/static"
},
{
"src": "functions/dtd.js",
"use": "@now/node",
"config": {
"maxLambdaSize": "10mb"
}
},
{
"src": "functions/format.js",
"use": "@now/node",
"config": {
"maxLambdaSize": "10mb"
}
},
{
"src": "functions/schematron.js",
"use": "@now/node",
"config": {
"maxLambdaSize": "10mb"
}
}
],
"routes": [
{ "src": "/", "dest": "/static/index.html", "methods": ["GET"] },
{ "src": "/dtd", "dest": "/functions/dtd.js", "methods": ["POST"] },
{ "src": "/format", "dest": "/functions/format.js", "methods": ["POST"] },
{ "src": "/schematron", "dest": "/functions/schematron.js", "methods": ["POST"] }
]
}