mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
import {redirect} from "@sveltejs/kit"
|
|
|
|
/** @type {import("./$types").PageLoad} */
|
|
export function load() {
|
|
throw redirect(302, "/config/")
|
|
}
|