Home / File/ wrangler.jsonc — astro Source File

wrangler.jsonc — astro Source File

Architecture documentation for wrangler.jsonc, a json file in the astro codebase.

Entity Profile

Source Code

{
  "compatibility_date": "2026-01-28",
  "main": "./src/worker.ts",
  "name": "astro-cloudflare-custom-entryfile",
  "assets": {
    "directory": "./dist",
    "binding": "ASSETS"
  },
  "queues": {
    "producers": [
      {
        "queue": "MY-QUEUE-NAME",
        "binding": "MY_QUEUE"
      }
    ],
    "consumers": [
      {
        "queue": "MY-QUEUE-NAME",
        "max_batch_size": 10,
        "max_batch_timeout": 5
      }
    ]
  },
  "durable_objects": {
    "bindings": [
      {
        "name": "MY_DURABLE_OBJECT",
        "class_name": "MyDurableObject"
      }
    ]
  },
  "migrations": [
    {
      "tag": "v1",
      "new_sqlite_classes": [
        "MyDurableObject"
      ]
    }
  ]
}

Frequently Asked Questions

What does wrangler.jsonc do?
wrangler.jsonc is a source file in the astro codebase, written in json.
Where is wrangler.jsonc in the architecture?
wrangler.jsonc is located at packages/integrations/cloudflare/test/fixtures/custom-entryfile/wrangler.jsonc (directory: packages/integrations/cloudflare/test/fixtures/custom-entryfile).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free