speedclimbing/website

View on GitHub
src/routes/stats/+page.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';

export const load: PageLoad = async () => {
    throw redirect(302, `/stats/summary?year=${new Date().getFullYear()}`);
};