Select the types of activity you want to include in your feed.
1import { redirect } from '@sveltejs/kit'; 2import type { PageLoad } from './$types'; 3 4export const load: PageLoad = () => { 5 throw redirect(301, '/work'); 6};