
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
- Google login error: {"message":"Invalid ...
hi, im trying to use google login with account.createOAuth2Session( 'google', 'profevardilla.pages.dev', 'profevardilla.pages.dev'...
- Auth Error
"use client"; import { useEffect } from "react"; import { getSessionCookie } from "@/actions/auth"; import { createBrowserSessionClient } from "@/lib/appwrite-...
- Prevent modifying specific attributes
How do I prevent user to only to be able to modify some of the attributes. Document level security gives full access to update whole document, what are the wor...
