-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrangler.toml
27 lines (25 loc) · 962 Bytes
/
wrangler.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
type = "webpack"
name = "elfin-dev"
account_id = "85a1886b20d823a15307b056606fceea"
workers_dev = true
webpack_config = "webpack.development.js"
vars = { DEPLOYMENT_ENV = "dev", DEPLOYMENT_URL = "https://stage.weg.one" }
kv_namespaces = [
{ binding = "KV", id = "8d8d125804bd46e9ac683e9dbdc56e5c", preview_id = "2eeb394600674bc19959193666ab42bf" }
]
[env.staging]
name = "elfin-stage"
zone_id = "44ec966c57e026e3a58051647fc209fb"
webpack_config = "webpack.production.js"
vars = { DEPLOYMENT_ENV = "staging", DEPLOYMENT_URL = "https://stage.weg.one" }
kv_namespaces = [
{ binding = "KV", id = "2eeb394600674bc19959193666ab42bf", preview_id = "2eeb394600674bc19959193666ab42bf" }
]
[env.production]
name = "elfin"
zone_id = "44ec966c57e026e3a58051647fc209fb"
webpack_config = "webpack.production.js"
vars = { DEPLOYMENT_ENV = "production", DEPLOYMENT_URL = "https://weg.one" }
kv_namespaces = [
{ binding = "KV", id = "8d8d125804bd46e9ac683e9dbdc56e5c" }
]