Migrate to keycloakify 10

This commit is contained in:
Joseph Garrone 2024-06-06 01:44:57 +02:00
parent 081c7d4150
commit 030836d534
66 changed files with 1571 additions and 3256 deletions

11
src/vite-env.d.ts vendored
View file

@ -1,6 +1,11 @@
/// <reference types="vite/client" />
declare module "*.md" {
const src: string;
export default src;
import type { KcContext as KcContextLogin } from "./login/kcContext";
import type { KcContext as KcContextAccount } from "./account/kcContext";
declare global {
interface Window {
kcContext?: KcContextLogin | KcContextAccount;
}
}