Michael McClintock

Results 7 comments of Michael McClintock

Some extra info. Cloudflare pages functions (and workers) provide [bindings](https://developers.cloudflare.com/pages/platform/functions/#adding-bindings) which show up on the `env` parameter (not global). This isn't just for environment variables but also api access to...

@nnelgxorz from the cloudflare api perspective everything just hangs off the env object so as long as you have access to that. qwik/city is very new to me but my...

I can imagine using environment variables for credentials when data fetching. All the cloudflare APIs are also essentially data fetching. Makes sense to have it avail. in `on__` methods for...

Yep that matches my understanding of how the classes should be ordered. I think the current behaviour spits the media query groups out in order, the classes within each group...

@vladanghene Thanks for the feedback. I have to admit I've only used this on small demos so far and I agree the way the library currently collects the tailwind rules...

Yeah so I wrote this code prior to tailwind 1.0 when I was experimenting with css utility classes. Tailwind actually uses the same method now of only generating css for...

FYI purgecss is now included in tailwind. So you can scrap the purge config file and use the tailwind config file instead. Just use NODE_ENV=production to get tailwind to purge....