website: redirect from /other-downloads/stable-downloads/ to /downloads

This commit is contained in:
Kingkor Roy Tirtho 2024-12-16 11:43:41 +06:00
parent f524a40062
commit 0aa44520ac

View File

@ -0,0 +1,5 @@
import { redirect } from "@sveltejs/kit";
export function load(){
redirect(301, "/downloads");
}