diff --git a/devfront/src/index.css b/devfront/src/index.css index 7b10c328..20ef470f 100644 --- a/devfront/src/index.css +++ b/devfront/src/index.css @@ -54,8 +54,7 @@ body { @apply min-h-screen bg-background font-sans text-foreground antialiased; - background-image: - radial-gradient( + background-image: radial-gradient( circle at 10% 18%, rgba(54, 211, 153, 0.16), transparent 28% diff --git a/devfront/src/lib/auth.ts b/devfront/src/lib/auth.ts index 1440c090..90453199 100644 --- a/devfront/src/lib/auth.ts +++ b/devfront/src/lib/auth.ts @@ -2,7 +2,8 @@ import { UserManager, WebStorageStateStore } from "oidc-client-ts"; import type { AuthProviderProps } from "react-oidc-context"; export const oidcConfig: AuthProviderProps = { - authority: import.meta.env.VITE_OIDC_AUTHORITY || "http://localhost:5000/oidc", // Gateway Proxy URL + authority: + import.meta.env.VITE_OIDC_AUTHORITY || "http://localhost:5000/oidc", // Gateway Proxy URL client_id: import.meta.env.VITE_OIDC_CLIENT_ID || "devfront", redirect_uri: `${window.location.origin}/auth/callback`, response_type: "code",