import { redirect } from '@sveltejs/kit';
export const load = async () => {
redirect(302, '/articles/1');
};