Use localhost as dev origin instead of devvm.viktorbarzin.lan

DEV_HOST env var now controls the hostname, defaulting to localhost.
This makes the dev setup work on any machine without requiring a
specific DNS entry.
This commit is contained in:
Viktor Barzin 2026-02-06 23:44:50 +00:00
parent b9f576ae2b
commit 2626870396
No known key found for this signature in database
GPG key ID: 0EB088298288D958
3 changed files with 2 additions and 4 deletions

View file

@ -3,7 +3,7 @@ import { WebStorageStateStore } from "oidc-client-ts";
export const oidcConfig = {
authority: "https://authentik.viktorbarzin.me/application/o/wrongmove/",
client_id: "5AJKRgcdgVm1OyApBzFkadDFfStW9a555zwv2MOe",
redirect_uri: import.meta.env.MODE === 'development' ? "https://devvm.viktorbarzin.lan/callback" : "https://wrongmove.viktorbarzin.me/callback",
redirect_uri: import.meta.env.MODE === 'development' ? "https://localhost/callback" : "https://wrongmove.viktorbarzin.me/callback",
userStore: new WebStorageStateStore({ store: window.localStorage }),
response_type: 'code', // PKCE flow (recommended for SPAs)
scope: 'openid profile email', // Requested scopes