We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68fd379 + e475125 commit 42c71c6Copy full SHA for 42c71c6
2 files changed
src/hooks/redirects.json
@@ -3,6 +3,10 @@
3
"link": "/docs/getting-started-for-web",
4
"redirect": "/docs/quick-starts"
5
},
6
+ {
7
+ "link": "/contact",
8
+ "redirect": "/contact-us"
9
+ },
10
{
11
"link": "/docs/server/database",
12
"redirect": "/docs/references/cloud/server-nodejs/databases"
src/routes/support/+page.server.ts
@@ -0,0 +1,5 @@
1
+import { redirect } from '@sveltejs/kit';
2
+
+export function load() {
+ throw redirect(301, '/contact-us');
+}
0 commit comments