We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84146cd commit 9064e93Copy full SHA for 9064e93
src/routes/docs/+page.ts
@@ -0,0 +1,6 @@
1
+import { redirect } from "@sveltejs/kit";
2
+import type { PageLoad } from "../$types";
3
+
4
+export const load: PageLoad = async () => {
5
+ throw redirect(303, "/docs/introduction");
6
+};
0 commit comments