Files
logseq/now.json
Tienson Qin 8b67dc30c3 Persistent
2020-04-01 21:37:41 +08:00

20 lines
578 B
JSON

{
"version": 2,
"env": {
"NODE_ENV": "production",
"GITHUB_APP_KEY": "@github_app_key",
"GITHUB_APP_SECRET": "@github_app_secret",
"GITHUB_REDIRECT_URI": "@github_redirect_uri",
"COOKIE_SECRET": "@cookie_secret"
},
"builds": [
{ "src": "api/index.js", "use": "@now/node"},
{ "src": "/public/**", "use": "@now/static"}
],
"routes": [
{ "src": "/api(.*)", "dest": "api/index.js" },
{ "src": "/(.+js|.+css|.+png|.+svg|.+jpg|.+ico|robots.txt|.+map)", "dest": "/public/$1" },
{ "src": "/(.*)", "dest": "/public/index.html" }
]
}