peppermint
Hi, according to the docs here https://appwrite.io/docs/tutorials/sveltekit-auth/step-4 I should turned off the SSR in my SvelteKit project why is that so? Is it mandatory? What will happen if I turn that on?
TL;DR
Title: Disabling SSR in SvelteKit - Why and What to Expect
Message: Hey developers! I noticed in the SvelteKit documentation that I should disable SSR (Server-Side Rendering). Is it necessary? What happens if I leave it enabled?
Solution: Disabling SSR in SvelteKit is recommended for this specific tutorial. It helps ensure a smoother authentication flow. It may not be mandatory for all projects but can be beneficial in certain cases. Leaving it enabled could potentially cause issues with the authentication process. Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...