Apply suggestions from code review

Co-authored-by: Torsten Dittmann <torsten.dittmann@googlemail.com>
This commit is contained in:
Vincent (Wen Yu) Ge
2024-03-11 14:20:53 +01:00
committed by GitHub
parent cdb5304ac7
commit 8e54df53fd
26 changed files with 87 additions and 99 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/nuxt/step-1');
redirect(303, '/docs/tutorials/nuxt/step-1');
};