< Summary

Information
Class: vite-env.d.ts
Assembly: app
File(s): /home/runner/work/ClutterStock/ClutterStock/frontend/app/vite-env.d.ts
Tag: 58_25416222083
Line coverage
N/A
Covered lines: 0
Uncovered lines: 0
Coverable lines: 0
Total lines: 19
Line coverage: N/A
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

/home/runner/work/ClutterStock/ClutterStock/frontend/app/vite-env.d.ts

#LineLine coverage
 1/// <reference types="vite/client" />
 2
 3interface ImportMetaEnv {
 4  readonly VITE_API_URL?: string;
 5  /** Set at image build via Docker build-args (CI). */
 6  readonly VITE_APP_VERSION?: string;
 7  readonly VITE_GIT_SHA?: string;
 8  /** Build-time fallback; at runtime in Docker/K8s prefer PUBLIC_* via root loader + process.env on SSR. */
 9  readonly VITE_OTEL_EXPORTER_OTLP_TRACES_ENDPOINT?: string;
 10  readonly VITE_OTEL_SERVICE_NAME?: string;
 11  /** OIDC provider URL (e.g. https://auth.wsh.no). */
 12  readonly VITE_OIDC_AUTHORITY?: string;
 13  /** OIDC client_id registered in Authelia. */
 14  readonly VITE_OIDC_CLIENT_ID?: string;
 15}
 16
 17interface ImportMeta {
 18  readonly env: ImportMetaEnv;
 19}

Methods/Properties