Skip to content

Commit 82945a6

Browse files
feat(routes): scaffold the /package routes
1 parent afd6219 commit 82945a6

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/routes/package/+page.server.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { redirect } from "@sveltejs/kit";
2+
3+
export function load() {
4+
redirect(307, "/packages");
5+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<script lang="ts">
2+
</script>

0 commit comments

Comments
 (0)