diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/KcApp/KcApp.tsx | 1 | ||||
| -rw-r--r-- | src/KcApp/kcContext.ts | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/KcApp/KcApp.tsx b/src/KcApp/KcApp.tsx index a242f2b..0cd7747 100644 --- a/src/KcApp/KcApp.tsx +++ b/src/KcApp/KcApp.tsx @@ -1,3 +1,4 @@ +import "./KcApp.css"; import { lazy, Suspense } from "react"; import type { KcContext } from "./kcContext"; import KcAppBase, { defaultKcProps } from "keycloakify"; diff --git a/src/KcApp/kcContext.ts b/src/KcApp/kcContext.ts index 6b47d97..15e0e35 100644 --- a/src/KcApp/kcContext.ts +++ b/src/KcApp/kcContext.ts @@ -14,7 +14,8 @@ export const { kcContext } = getKcContext< // Uncomment to test the login page for development. // Try with another page like "register-user-profile.ftl" // DON'T forget to re-comment before publishing to production. - "mockPageId": "login.ftl", + // You must run 'yarn keycloak' at least once before testing locally. + //"mockPageId": "login.ftl", "mockData": [ { "pageId": "login.ftl", |