forked from BoostIO/BoostNote-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
now.json
38 lines (38 loc) · 962 Bytes
/
now.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"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/" }
}
]
}