Select the types of activity you want to include in your feed.
1import { requireAuth } from "$lib/auth/guards"; 2import type { PageServerLoad } from "./$types"; 3 4export const load: PageServerLoad = (event) => { 5 requireAuth(event); 6};