forked from near/near-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetlify.toml
41 lines (36 loc) · 1.27 KB
/
netlify.toml
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
39
40
41
[build]
publish = "./dist"
command = "yarn build"
[context.production.environment]
DISABLE_PHONE_RECOVERY = "no"
REACT_APP_NETWORK_ID = "default"
REACT_APP_ACCOUNT_HELPER_URL = "https://helper.mainnet.near.org"
REACT_APP_NODE_URL = "https://rpc.mainnet.near.org"
REACT_APP_ACCESS_KEY_FUNDING_AMOUNT = "250000000000000000000000"
NEW_ACCOUNT_AMOUNT = "500000001000000000000000000"
REACT_APP_ACCOUNT_ID_SUFFIX = "near"
WAMP_NEAR_EXPLORER_URL = "wss://near-explorer-wamp.onrender.com/ws"
WAMP_NEAR_EXPLORER_TOPIC_PREFIX = "com.nearprotocol.mainnet.explorer"
EXPLORER_URL = "https://explorer.mainnet.near.org"
REACT_APP_IS_MAINNET = "true"
DISABLE_SEND_MONEY = "true"
DISABLE_CREATE_ACCOUNT = "true"
REACT_APP_MULTISIG_MIN_AMOUNT = "36"
MIXPANEL_TOKEN = "4a10180da7af8d6d0728154d535aa7bb"
LOCKUP_ACCOUNT_ID_SUFFIX = "lockup.near"
[[headers]]
for = "/*"
[headers.values]
X-Frame-Options = "deny"
Content-Security-Policy = """
frame-ancestors 'none'
"""
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
[[plugins]]
package = "@sentry/netlify-build-plugin"
[plugins.inputs]
sentryOrg = "near-protocol"
sentryProject = "mainnet-staging-wallet"