We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey all, been working on a framework for building cloudflare workers to serve static sites.
In the development process I stumbled across a few bugs discussed on Discord but this one was asked for a ticket to be opened.
Below works in miniflare but not on production.:
const r = await fetch(`https://example.com`); r.headers.set('foo', 'bar');
I found just by chance that this works on production:
const r = await fetch(`https://example.com`); const rMutable = new Request(r.body, r); rMutable.headers.set('foo', 'bar');
The text was updated successfully, but these errors were encountered:
Hey! 👋 Thanks for raising this! I'm pretty busy the next few weeks with exams, but will try get this fixed soon. 👍
Sorry, something went wrong.
1599c75
Hey! I've just released version 2.5.0 with a fix for this. Please let me know if you have any other issues.
2.5.0
No branches or pull requests
Hey all, been working on a framework for building cloudflare workers to serve static sites.
In the development process I stumbled across a few bugs discussed on Discord but this one was asked for a ticket to be opened.
Below works in miniflare but not on production.:
I found just by chance that this works on production:
The text was updated successfully, but these errors were encountered: