From db4205d120b83bc36bfffc280f258dd330eee4b7 Mon Sep 17 00:00:00 2001 From: Wout De Puysseleir Date: Wed, 3 May 2023 20:07:59 -0700 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 254f9f8..fbe4ae7 100644 --- a/README.md +++ b/README.md @@ -374,7 +374,7 @@ The way LiveSvelte updates itself through LiveView is by letting Svelte handle a Like mentioned, without SSR you'd see a brief flash of un-rendered content. Sometimes you can get away with not rendering Svelte on the server, for example when your Svelte component doesn't do any rendering on first page load and needs to be manually toggled for visibility by the user. Or when it is a component that has no visual component to it like tracking your mouse cursor and sending it back to the server. -In theses cases you can turn of SSR. +In theses cases you can turn off SSR. #### Disabling SSR