first commit
This commit is contained in:
11
src/runtime.ts
Normal file
11
src/runtime.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import type { OidcResolvedOptions } from "./index.js";
|
||||
|
||||
// This constant is provided via Vite define by the integration during astro:config:setup
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
declare const __RESUELY_OIDC_OPTIONS: OidcResolvedOptions;
|
||||
|
||||
export const options: OidcResolvedOptions = (
|
||||
typeof __RESUELY_OIDC_OPTIONS !== "undefined"
|
||||
? __RESUELY_OIDC_OPTIONS
|
||||
: (undefined as any)
|
||||
) as OidcResolvedOptions;
|
||||
Reference in New Issue
Block a user