chore: fix redirects

This commit is contained in:
loks0n
2024-02-09 17:33:50 +00:00
parent f6c4e3626e
commit 07b6695431
5 changed files with 5 additions and 5 deletions

View File

@@ -2,5 +2,5 @@ import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';
export const load: PageLoad = async () => {
throw redirect(303, '/docs/tutorials/sveltekit-auth/step-1');
throw redirect(303, '/docs/tutorials/sveltekit-ssr-auth/step-1');
};

View File

@@ -17,4 +17,4 @@ If you're a Svelte developer, the examples in this guide show you how Appwrite c
Even if you've never tried Appwrite, you will get an idea of what it'll feel like to build with Svelte and Appwrite.
If you're inspired and wish to follow along, make sure you've followed [Start with Svelte](https://appwrite.io/docs/quick-starts/sveltekit) first.
You can also clone the [Demos for svelte](https://github.com/appwrite/demos-for-svelte) examples and follow along by looking at the code.
Clone the [Demos for svelte](https://github.com/appwrite/demos-for-svelte) examples and follow along with the source code.