Jonas Galvez

Results 82 comments of Jonas Galvez

Thanks for the report, let me look into it. Bear in mind Fastify DX has been tested on Fastify v3 only — v4 support is still pending. But I'll double...

That's an interesting problem — that guide is targeted at frameworks that do `` management at the SSR level. Fastify DX sends out the `` outside the SSR phase by...

Hey there! Yeah, I thought about using an enum but I feel setting flags to booleans is more developer friendly than assigning strings to a single property? Maybe it's just...

The `generated` flag is for SSG, which I'm adding support for in the next cycle.

You do make a compelling argument, sir. I'm tempted to make this change for `0.3` onwards.

Hey, thanks for the report. For now I think you can probably fix by running `npm i` with `-f`, but I'll get this fixed.

Awesome — thanks for the input @jonsherrard — I'll update the docs this weekend.

> React isn't working at all. Can you share your repo? I have React apps running `fastify-vite-react` now that don't have this issue, weird.

This was a breaking change I failed to properly document, my apologies. You need to explicitly import React now. ```diff diff --git a/entry/client.jsx b/entry/client.jsx index fc6f90a..e125ad1 100644 --- a/entry/client.jsx +++...

Good catch — I think the workaround for now is to just use `import.meta` if you we're using `/client.mjs` — probably doesn't make sense to keep `/client.js` available in renderer...