I'm looking for a way to replicate worker wrangler.toml/routes in local dev mode

# wrangler.toml
# ...

routes = [
  { pattern = "example.test/api*", zone_name = "example.test" },
  { pattern = "localhost:4321/api*", zone_name = "localhost" },
]

Probably not possible with wrangler only. Maybe it's possible with miniflare, zero trust and/or WARP client?
Was this page helpful?