BoostNote-App/now.json
2019-12-19 14:00:45 +09:00

39 lines
959 B
JSON

{
"name": "boostnote.next",
"version": 2,
"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"
}
},
"builds": [
{
"src": "compiled/**/*",
"use": "@now/static"
}
],
"routes": [
{
"src": "/app/(.*.?bundle.js)",
"dest": "/compiled/$1"
},
{
"src": "/app/(.*).(js|icon|css|svg|png|gif|jpeg)$",
"dest": "/compiled/app/$1.$2"
},
{
"src": "/app/?(.*)",
"dest": "/compiled/index.html"
},
{
"src": "/",
"status": 301,
"headers": { "Location": "/app/" }
}
]
}