Rom
Rom
> if I plan to use mostly SSG + some SPA, do I still need a Node.js server? https://github.com/vikejs/vike/commit/108f4b527e91b19c03cb217299bc0b0a73a5e265 https://vike.dev/pre-rendering#ssg-vs-ssr-vs-spa
https://github.com/vikejs/vike/pull/2692 https://vike.dev/globalContext#prerenderContext https://vike.dev/api#prerender https://vike.dev/api#access-globalcontext
It's already tricky to reproduce with Vike (it happens only seldomly and I can't find a path to reliably reproduce it), so I ain't sure how I could try to...
Yes, that's would be nice. It's very much something we want to implement. Also, I was thinking of adding a new config `+name` with a default `+titleTemplate`: ```js // Default...
Tracked at https://github.com/vikejs/vike/issues/2522.
Does it work with `0.4.223-commit-6f064ad`?
Let's re-open if it doesn't.
> `navigate("")` Expected behaviour - remove all search params I kinda like it, but it isn't explicitly part of the API contract (yet?). Anything that makes you feel like it...
How about this? ```js navigate({ search: { someNewQuery: 'param', removedQuery: null } }) ``` ```js navigate({ searchAll: {}, // remove all previous queries search: { someNewQuery: 'param', } }) ```...
Or maybe: ```js // URL current: /products?filter=cars // URL next: /products?someNewQuery=param navigate({ // overwrite searchAll: "", // mutate search: { someNewQuery: 'param', } }) ``` ```js // URL current: /products?filter=cars...