This commit is contained in:
matthieu42morin 2024-04-29 05:11:22 +02:00
parent 43534bfefd
commit 53b4751ccc
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import { redirect } from '@sveltejs/kit'
import type { LayoutServerLoad } from './$types'
export const load: LayoutServerLoad = () => {
throw redirect(301, '/blog/atom.xml')
}