og-image/now.json

19 lines
660 B
JSON
Raw Normal View History

2019-01-01 16:19:25 -08:00
{
"name": "og-image",
"alias": [ "og-image.now.sh", "api-og-image.zeit.sh" ],
2019-01-01 16:19:25 -08:00
"version": 2,
"regions": ["all"],
"public": true,
2019-01-01 16:19:25 -08:00
"builds": [
2019-07-03 12:10:09 -07:00
{ "src": "public/**", "use": "@now/static" },
2019-01-25 13:19:44 -08:00
{ "src": "package.json", "use": "@now/static-build" },
{ "src": "src/card.ts", "use": "@now/node@canary", "config": { "maxLambdaSize": "36mb" } }
2019-01-01 16:19:25 -08:00
],
"routes": [
2019-01-21 13:30:12 -08:00
{ "src": "/", "dest": "/public/index.html" },
2019-04-21 17:54:13 -07:00
{ "src": "/(favicon.ico|style.css|robots.txt)", "dest": "/public/$1" },
2019-02-05 12:31:19 -08:00
{ "src": "/dist/browser.js", "dest": "/browser.js" },
2019-01-22 14:58:12 -08:00
{ "src": "/(.+)", "dest": "/src/card.ts" }
2019-01-01 16:19:25 -08:00
]
2019-01-29 08:24:07 -08:00
}