Skip to content

Commit

Permalink
Add tos 302 redirect to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gchartier committed Aug 2, 2024
1 parent a511966 commit 7e086c0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/routes/tos/+page.server.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { redirect } from "@sveltejs/kit";

// 302 temporary redirect -> https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302
export async function load() {
throw redirect(302, "https://docs.orcfax.io/terms-of-service");
}

0 comments on commit 7e086c0

Please sign in to comment.