Greg Brimble
Greg Brimble
Hey folks, sorry, I've been pretty preoccupied with other stuff this year, and @seldo has already done a great job with the queries so far. Looks like it's pretty much...
Hi @seldo! I'm at Cloudflare Pages and would also be happy to help out with the queries if you're looking for additional hands. I've previously done the analysis for CMS...
Hey @seldo , happy to make a start while you're still recuperating. Do you or @whitep4nth3r have that query list you've started, or are we just working off of [this...
Module Worker type should be here: https://github.com/cloudflare/workers-types/blob/master/index.d.ts#L553-L556
Now that we're using `wrangler dev`'s server, I'll remove the `pages` label as, like @Electroid says, this could be a feature for `wrangler dev` in general.
Hi @ElijahKotyluk , glad to hear you got it working on a fork. If you can, please put up a PR with your changes, but we have added some [refresh...
Ah, okay, thanks for that additional info! Absolutely feel free to put up whatever you have right now and we can help get it over the line 😊
For the Pages local dev server, we need the following from a dev server API: - pass it a script as an in-memory string - pass a script filepath with...
With #186, `wrangler@alpha` now has the following behavior: ```ts env.ASSETS.fetch('http://fakehost/myasset.jpg') // works env.ASSETS.fetch(new Request('/myasset.jpg')) // works env.ASSETS.fetch('/myasset.jpg') // doesn't work ``` I'll re-open this ticket to track behavior on Cloudflare...
We've got an internal ticket filed for improving the handling of `env.ASSETS.fetch` in production. I think we probably want ```ts env.ASSETS.fetch('http://fakehost/') env.ASSETS.fetch(new Request('http://fakehost/')) ``` to both respond correctly. Not sure...