I'm curious which router from Next.js is recommended by someone at Appwrite for use with Next.js. Should I use the App Router or the Pages Router?
This is because when you use the App Router, you need to work on both the client and server sides. Also, it seems a bit tricky to set up server-side rendering with Appwrite. And when using the client, I need to turn every single component into a client component, which seems to make the App Router messy, I think.
It is always easier to use client-rendering, even better for rendering loading. (It is only my personal opinion). But if you want to use ssr, you can use appwrite-ssr npm pck
Maybe you can switch the ssr off, cant you?
If you don't need seo, then disabling SSR could probably be a good choice
Recommended threads
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...
- custom domain with CloudFlare
Hi all, it seems that CloudFlare has blocked cross-domain CNAME link which made my app hostname which is in CloudFlare, unable to create a CNAME pointing to clo...
- Custom emails
What happen if I use a third party email provider to customize my emails and my plan run out of emails/month? Appwrite emails are used as fallback sending emai...