wrangler.jsonc 798 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "$schema": "node_modules/wrangler/config-schema.json",
  3. "name": "xrates-queryer",
  4. "main": "src/index.ts",
  5. "compatibility_date": "2025-06-03"
  6. // "compatibility_flags": [
  7. // "nodejs_compat"
  8. // ],
  9. // "vars": {
  10. // "MY_VAR": "my-variable"
  11. // },
  12. // "kv_namespaces": [
  13. // {
  14. // "binding": "MY_KV_NAMESPACE",
  15. // "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  16. // }
  17. // ],
  18. // "r2_buckets": [
  19. // {
  20. // "binding": "MY_BUCKET",
  21. // "bucket_name": "my-bucket"
  22. // }
  23. // ],
  24. // "d1_databases": [
  25. // {
  26. // "binding": "MY_DB",
  27. // "database_name": "my-database",
  28. // "database_id": ""
  29. // }
  30. // ],
  31. // "ai": {
  32. // "binding": "AI"
  33. // },
  34. // "observability": {
  35. // "enabled": true,
  36. // "head_sampling_rate": 1
  37. // }
  38. }