mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
32 lines
472 B
JSON
32 lines
472 B
JSON
{
|
|
"version": 2,
|
|
"builds": [
|
|
{
|
|
"src": "/addon/static/**/*",
|
|
"use": "@now/static"
|
|
},
|
|
{
|
|
"src": "/addon/**/*.js",
|
|
"use": "@now/node"
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"src": "/static/(.*)",
|
|
"dest": "/addon/static/$1"
|
|
},
|
|
{
|
|
"src": "/(.*)",
|
|
"dest": "/addon/serverless.js"
|
|
}
|
|
],
|
|
"github": {
|
|
"silent": true
|
|
},
|
|
"env": {
|
|
"MONGODB_URI": "@mongodb-uri",
|
|
"DATABASE_URI": "@database-uri"
|
|
}
|
|
}
|
|
|