Is there any benefit or perf difference between these two? ```toml routes = [ { pattern = "https:

Is there any benefit or perf difference between these two?

routes = [
  { pattern = "https://hello.example.com/*", zone_name = "example.com" }
]


routes = [
  { pattern = "hello.example.com", custom_domain = true }
]
Was this page helpful?