Home/Config Files/wrangler.toml
Config File Wiki

wrangler.toml config guide

Cloudflare Workers project config, routes, bindings, compatibility date, and environments.

Field explanations

  • Top-level settings define the tool behavior
  • Environment-specific blocks override defaults
  • Paths are usually relative to the config file or project root
  • Secrets should be referenced, not committed

Minimal template

[build]
command = "npm run build"

[vars]
APP_ENV = "production"

Common usage patterns

  • Keep wrangler.toml small and reviewable
  • Use comments only when the format supports them
  • Commit example files with placeholder values
  • Validate locally before deploying

Common errors

  • Binding not found
  • Compatibility date missing
  • vars confused with secrets
  • Wrong environment selected

Online validation

Validate syntax first, then compare behavior against your deploy target. For JSON-based configs, use the JSON formatter before debugging tool-specific behavior.

Related tools