BoostNote-App/now.json

37 lines
895 B
JSON
Raw Normal View History

2019-08-26 09:22:32 +03:00
{
2019-10-08 06:03:24 +03:00
"name": "boostnote.next",
2019-08-26 09:22:32 +03:00
"version": 2,
2019-11-13 11:17:48 +03:00
"build": {
"env": {
"AMPLIFY_AUTH_IDENTITY_POOL_ID": "@staging-boostnote.next-amplify_auth_identity_pool_id",
"AMPLIFY_AUTH_REGION": "@staging-boostnote.next-amplify_auth_region",
"AMPLIFY_PINPOINT_APPID": "@staging-boostnote.next-amplify_pinpoint_appid",
"AMPLIFY_PINPOINT_REGION": "@staging-boostnote.next-amplify_pinpoint_region",
"BOOST_NOTE_BASE_URL": "@staging-boostnote.next-boost_note_base_url"
}
},
2019-08-26 09:22:32 +03:00
"builds": [
{
"src": "package.json",
"use": "@now/static-build",
"config": {
2019-12-17 12:38:25 +03:00
"distDir": "compiled"
2019-08-26 09:22:32 +03:00
}
},
{
"src": "resources/*",
"use": "@now/static"
2019-08-26 09:22:32 +03:00
}
2019-10-08 06:03:24 +03:00
],
"routes": [
{
"src": "/app/(.*).(js|icon|css|svg|png|gif|jpeg)$",
2019-12-11 10:28:39 +03:00
"dest": "/$1.$2"
2019-10-08 06:03:24 +03:00
},
{
"src": "/app/?(.*)",
2019-12-11 10:28:39 +03:00
"dest": "/index.html"
2019-10-08 06:03:24 +03:00
}
2019-08-26 09:22:32 +03:00
]
}