Matej Černý

Results 95 comments of Matej Černý

After looking into it more, it looks like the only possible solution is to use `flush: 'sync'`. Other watch effects never run on the server. Can we close the issue...

@huang-julien based on this, it looks like `flush: 'sync'` watchers _do_ run during SSR... they are probably the only ones? I haven't found a mention about it in the docs......

Could this be a duplicate of https://github.com/nuxt/nuxt/issues/23832 ?

@mrleblanc101 as a workaround, you can add ```ts onMounted(() => { window.scrollTo(0, 0) }); ``` to the parent route with the layout and keep `scrollToTop: false` in the child routes...

we've had a brief discussion with @OrbisK about this, and we think there should be some additional logic ```ts const enabled = shallowRef(false) const { data, clear, execute } =...

I'm not sure adding another dedupe option is the best approach. I think we stould be careful not to have too many options. Why do you think that cancelling a...

I've discussed this with Daniel today. Outcome: - we can do this in v4, it is not a breaking change - `nitro.typescript.tsConfig` can stay for now and can be removed...

@Subham-KRLX go ahead! 😊 some more pieces of information you might find useful: - the `typescript.tsConfig` options already modify the shared tsConfig if I'm not mistaken, so we just need...