Skip to content

Commit

Permalink
feat: redirect /shop to sentry.shop (#1734)
Browse files Browse the repository at this point in the history
  • Loading branch information
w3cj committed Jul 8, 2024
1 parent f9be47f commit f54905f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/routes/(blank)/shop/+server.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export async function GET() {
return new Response(null, {
status: 302,
headers: {
location: 'https://sentry.shop'
}
});
}

0 comments on commit f54905f

Please sign in to comment.