Did some package updates, Svelte build changes (fewer warnings), work on IDAA and Jitsi service.

This commit is contained in:
Scott Idem
2025-12-12 14:57:10 -05:00
parent 1611ac0183
commit 2a5b46883f
7 changed files with 256 additions and 212 deletions

18
src/app.d.ts vendored
View File

@@ -2,8 +2,24 @@
// for information about these interfaces
// and what to do when importing types
declare namespace App {
// interface Locals {}
interface Locals {
userid: string;
}
// interface PageData {}
// interface Error {}
// interface Platform {}
}
declare global {
namespace App {
interface Platform {}
}
interface ImportMetaEnv {
VITE_NOVI_API_KEY: string;
VITE_NOVI_MOD_GROUP_GUID: string;
VITE_JITSI_TOKEN_ENDPOINT: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
}