mirror of
https://github.com/logseq/logseq.git
synced 2026-05-02 01:46:35 +00:00
20 lines
578 B
JSON
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" }
|
|
]
|
|
}
|