feat: configure static file output

This commit is contained in:
2023-02-11 19:05:58 +01:00
parent 3b2b65447d
commit 843d38ad4f
4 changed files with 31 additions and 13 deletions

5
src/routes/+page.ts Normal file
View File

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