mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-07-26 22:44:45 +00:00
7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
import { redirect } from "@sveltejs/kit";
|
|
import type { PageLoad } from "./$types";
|
|
|
|
export const load = (() => {
|
|
throw redirect(302, "/config/layout/");
|
|
}) satisfies PageLoad;
|