-
Notifications
You must be signed in to change notification settings - Fork 33
/
netlify.toml
34 lines (30 loc) · 1.05 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
# Netlify configuration |
# -----------------------/
# For staging and pre-deploys
[context.deploy-preview.environment]
ALGOLIA_APP_ID = "N5GW2EAIFX"
ALGOLIA_USAGE_API_KEY = "bde675591087b21d0dbc992981c26c5f"
FB_APP_ID = "1923415864574767"
GRAPHQL_API_URL = "https://graphql.staging.captainfact.io"
HTTP_API_URL = "https://api.staging.captainfact.io"
WS_API_URL = "wss://api.staging.captainfact.io/socket"
JS_ENV = "staging"
FRONTEND_URL = "https://staging.captainfact.io"
[context.branch-deploy.environment]
ALGOLIA_APP_ID = "N5GW2EAIFX"
ALGOLIA_USAGE_API_KEY = "bde675591087b21d0dbc992981c26c5f"
FB_APP_ID = "1923415864574767"
GRAPHQL_API_URL = "https://graphql.staging.captainfact.io"
HTTP_API_URL = "https://api.staging.captainfact.io"
WS_API_URL = "wss://api.staging.captainfact.io/socket"
JS_ENV = "staging"
FRONTEND_URL = "https://staging.captainfact.io"
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
[[headers]]
for = "/*"
[headers.values]
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"