Is it possible to mimic worker routes in localhost with wrangler? ```toml # wrangler.toml # ... rou

Is it possible to mimic worker routes in localhost with wrangler?
# wrangler.toml
# ...

routes = [
  { pattern = "example.test/api*", zone_name = "example.test" },
  { pattern = "localhost:4321/api*", zone_name = "localhost" },
]
Was this page helpful?