Skip to content

Commit 868f0c7

Browse files
committed
fixed wrangler.toml for kv_namespaces
1 parent 82eb130 commit 868f0c7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

example/wrangler.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name = "firebase-auth-example"
22
compatibility_date = "2022-07-05"
33
workers_dev = true
44

5+
tsconfig = "./tsconfig.json"
6+
57
[vars]
68
# Please set FIREBASE_AUTH_EMULATOR_HOST environment variable in your wrangler.toml.
79
# see: https://developers.cloudflare.com/workers/platform/environment-variables/#environment-variables-via-wrangler
@@ -24,8 +26,7 @@ PROJECT_ID = "example-project12345" # see package.json (for emulator)
2426
# Specify cache key to store and get public jwk.
2527
PUBLIC_JWK_CACHE_KEY = "public-jwk-cache-key"
2628

27-
kv_namespaces = [
28-
{ binding = "PUBLIC_JWK_CACHE_KV", id = "", preview_id = "" }
29-
]
30-
31-
tsconfig = "./tsconfig.json"
29+
[[kv_namespaces]]
30+
binding = "PUBLIC_JWK_CACHE_KV"
31+
id = ""
32+
preview_id = "testingId"

0 commit comments

Comments
 (0)