Glenn Becker

Results 77 comments of Glenn Becker

Instructions to fix locally for people who can't wait to play: - Go into `node_modules/@builder.io/qwik-city/vite` - In `index.mjs` and `index.cjs` search for the function `isVitePathname` - Replace the body of...

I think this is a regression: https://github.com/BuilderIO/qwik/issues/580

@manucorporat How would you feel about prefixing all of these with something like `q:`, that way you can type `q:` and have a full list of snippets in your intellisense...

Just have a few more tweaks to make and then I'll be ready to get this merged. 👍

@manucorporat Will definitely wrap this up Monday or Tuesday

Qwik actually has a `useEnvData` function, so this should be as easy as passing the env param to the render options. @elxris @mrmcc3 Would either of you mind taking a...

Ah, you're right. The use*() functions have rules on where they can be used. You could still use useEnvData() inside of a component$ or other use methods. It might still...

I think you're right. It would just involve a larger reworking of the Qwik City code. You could still use useEnvData inside of a useResource or useServerMount$ to do data...

@elxris If it's in a useServerMount$ it will only run in the server. A useResource can run on both, so you would need to be careful. I think if the...