Complete the code to disable server-side rendering for this Svelte page.
<script context="module"> export const ssr = [1]; </script>
Setting ssr = false disables server-side rendering, making the page render only on the client.
Complete the code to enable client-side rendering for this Svelte page.
<script context="module"> export const csr = [1]; </script>
Setting csr = true ensures the page renders on the client side.
Fix the error in the code to prerender this Svelte page.
<script context="module"> export const prerender = [1]; </script>
Prerendering is enabled by setting prerender = true as a boolean, not a string.
Fill both blanks to disable SSR and enable CSR for this Svelte page.
<script context="module"> export const ssr = [1]; export const csr = [2]; </script>
Disabling SSR with ssr = false and enabling CSR with csr = true makes the page render only on the client.
Fill all three blanks to enable prerendering, disable SSR, and enable CSR in this Svelte page.
<script context="module"> export const prerender = [1]; export const ssr = [2]; export const csr = [3]; </script>
Set prerender = true to prerender the page, ssr = false to disable server rendering, and csr = true to enable client rendering.