Hello! 1. I have external backend. It for example returns status of servers (is online, amount of users). When I use
useFetch
useFetch
backend receives 2 requests from client and server. Why? I found out that I can disable sendings requests from server, but it can make layout shift... 2. I have cookie based auth in my external backend. In vue I just was sending requests using axioms, and It worked, but now I want to do it proper way. Should I use nuxt-auth? I can change external api to use anything else. What are best practises? 3. I want to get random text from list with fretting messages with SSR. How to do it without hydration error? I can't just check if side is client, because it will also give error 4. When should I use hybrid rendering and when SPA? For example I have shop when user can but items on different paths, then he can go to bascket path where he can confirm buying items. Also there is complex dashboard where user can change parameters like address, password, name etc. Should I use SSR for bascket and items but SPA for user dashboard? Sorry for taking your time, but I would like to create my nuxt app in proper way