workers-sdk
workers-sdk copied to clipboard
⛅️ Home to Wrangler, the CLI for Cloudflare Workers®
There's a quirk with either Pages proper or wrangler pages dev where any request with an `if-none-match` header gets completely messed up. This issue is for an investigation into the...
For `--assets` / `config.assets`, a couple of features: - Let's actually just enable CORS for static assets by default - Add a configuration `cors: boolean` - Allow for further customisation...
When using `config.assets`/ `--assets`, we should be able to mount static assets on a path. I'm thinking `config.assets.mount`.
**DO NOT LAND** --- This adds support for `--assets` for service-worker Workers. We do this similarly to how we implement support for module workers (using a facade), but here's the...
### Describe the solution In order to debug proxy behavior, I'm trying to run my development server in another terminal instead of using `wrangler pages dev --proxy=3000 -- deno task...
### What version of `Wrangler` are you using? 2.0.8 ### What operating system are you using? Windows ### Describe the Bug There appears to be a difference in the `_headers`...
### Describe the solution When navigating to a URL such as `https://example.com/foo.html`, Pages for some reason redirects to `https://example.com/foo`. Unfortunately, this "feature" is simply **_disastrous_** for my use-cases, and I...
### What version of `Wrangler` are you using? d1 ### What operating system are you using? macOS ### Describe the Bug ```ts export default { fetch(request, env) { return new...
We should be able to delete a Worker from the CLI, potentially include all its environments, and linked Durable Objects and other resources. Probably needs to be interactive, but we...
feat: automatically replace fetch polyfills (isomorphic-fetch, node-fetch, unidici etc) with shims
A common pattern in the node ecosystem is to use polyfills for fetch. These polyfills are usually built on top of http/https built ins. Trying to use these on Workers...