Browse Source

add default landing page

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

+ 5 - 0
src/routes/+page.server.js

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