svelte lol

This commit is contained in:
2026-07-19 19:40:25 +02:00
parent 3344064030
commit 1324512ebf
56 changed files with 5506 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
// Stub page for /login — will be built in Sprint 2.
// For now redirect to the legacy login page so auth still works.
import { redirect } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async () => {
// Temporary: redirect to legacy backend login until we build the Svelte login form
throw redirect(307, 'http://localhost:1337/login');
};