crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

wrangler.link.toml (699B)


      1 name = "crossmate-link"
      2 main = "link-worker.js"
      3 compatibility_date = "2026-05-25"
      4 # The hostname below is what recipients see in link previews, so the ugly
      5 # workers.dev fallback stays off. The custom domain requires inqk.net to be a
      6 # zone on the same Cloudflare account; the route is created on first deploy.
      7 workers_dev = false
      8 preview_urls = false
      9 
     10 routes = [
     11   { pattern = "crossmate.inqk.net", custom_domain = true }
     12 ]
     13 
     14 # The Open Graph preview image is bundled into the worker as a data module
     15 # (see the import in link-worker.js) so the Workers directory stays flat
     16 # instead of carrying a one-file static-assets subdirectory.
     17 [[rules]]
     18 type = "Data"
     19 globs = ["**/*.png"]
     20 fallthrough = true