Browse Source

change default page to home

Daniel Bohry 9 tháng trước cách đây
mục cha
commit
a45d700475
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/routes/+page.server.js

+ 1 - 1
src/routes/+page.server.js

@@ -1,5 +1,5 @@
 import { redirect } from '@sveltejs/kit';
 
 export function load() {
-	throw redirect(307, '/login');
+	throw redirect(307, '/home');
 }