1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 12:30:32 +09:00
namae/now.json

31 lines
606 B
JSON
Raw Normal View History

2019-07-27 19:18:54 +09:00
{
"version": 2,
"name": "namae",
"alias": "namae.dev",
"builds": [
{
2019-07-31 13:11:00 +09:00
"src": "/web/package.json",
2019-07-27 19:18:54 +09:00
"use": "@now/static-build",
2019-09-17 14:30:33 +09:00
"config": {"distDir": "build"}
2019-07-27 19:18:54 +09:00
},
{
2019-08-30 16:40:22 +09:00
"src": "/api/services/*.ts",
2019-09-17 14:30:33 +09:00
"use": "@now/node"
2019-07-27 19:18:54 +09:00
}
],
"routes": [
{
2019-08-06 01:17:45 +09:00
"src": "/availability/(?<provider>[^/]+)/(?<query>[^/]+)",
2019-08-30 16:40:22 +09:00
"dest": "/api/services/$provider.ts?query=$query"
2019-07-27 19:18:54 +09:00
},
{
"src": "/(.*)",
2019-09-17 14:30:33 +09:00
"dest": "/web/$1",
"headers": {"cache-control": "s-maxage=86400"}
2019-07-27 19:18:54 +09:00
}
2019-09-01 00:00:24 +09:00
],
"env": {
"NTA_APPLICATION_ID": "@namae-nta-application-id"
}
2019-07-27 19:18:54 +09:00
}