mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-07 10:32:49 +00:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { redirect } from "@sveltejs/kit";
|
|
import type { PageLoad } from "./$types";
|
|
|
|
export const load = (() => {
|
|
redirect(302, "/config/");
|
|
}) satisfies PageLoad;
|