Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 440 Bytes

File metadata and controls

23 lines (18 loc) · 440 Bytes
wrangler minor
@cloudflare/workers-utils minor

Add Artifacts binding support to wrangler

You can now configure Artifacts bindings in your wrangler configuration:

// wrangler.jsonc
{
	"artifacts": [{ "binding": "MY_ARTIFACTS", "namespace": "default" }],
}

Type generation produces the correct Artifacts type reference from the workerd type definitions:

interface Env {
	MY_ARTIFACTS: Artifacts;
}