Pull _headers / _redirects OUT of an asset list. Cloudflare Workers Static Assets does NOT serve these as files
— it parses their raw text (sent in the worker metadata's assets.config._headers / ._redirects) into the
header/redirect rules the asset runtime applies. So they must be EXCLUDED from the upload manifest (else they'd
serve as public 200 blobs and the rules would never activate) and their contents routed to the config instead.
This mirrors exactly what wrangler does (excludes the two files, forwards their contents in the config).
Pull
_headers/_redirectsOUT of an asset list. Cloudflare Workers Static Assets does NOT serve these as files — it parses their raw text (sent in the worker metadata'sassets.config._headers/._redirects) into the header/redirect rules the asset runtime applies. So they must be EXCLUDED from the upload manifest (else they'd serve as public 200 blobs and the rules would never activate) and their contents routed to the config instead. This mirrors exactly what wrangler does (excludes the two files, forwards their contents in the config).