Initial commit

This commit is contained in:
Sebastian Korotkiewicz 2024-05-28 08:08:42 +02:00
commit b344a74a72
Signed by: skorotkiewicz
GPG key ID: 5BDC557B496BDB0D
45 changed files with 1232 additions and 0 deletions

12
pages/PageContext.ts Normal file
View file

@ -0,0 +1,12 @@
import type { User } from "lucia";
// https://vike.dev/pageContext#typescript
declare global {
namespace Vike {
interface PageContext {
auth: User;
}
}
}
export {};