* refactor(apps/*,docs): unify PostHog config * [autofix.ci] apply automated fixes * refactor: remove ImportMeta and keep ImportMetaEnv only --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="../../vite-env.d.ts" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_TARGET_HUGGINGFACE_SPACE: boolean
|
|
readonly VITE_PLATFORM: 'ios' | 'android' | 'web'
|
|
// more env variables...
|
|
}
|