feat: migrate to vue 3 + vite (#2553)

Co-authored-by: amk-dev <akash.k.mohan98@gmail.com>
Co-authored-by: liyasthomas <liyascthomas@gmail.com>
This commit is contained in:
Andrew Bastin
2022-09-29 10:55:21 +05:30
committed by GitHub
parent 77a561b581
commit 8b300fab5d
685 changed files with 17102 additions and 25942 deletions

View File

@@ -0,0 +1,29 @@
/// <reference types="vite/client" />
// Environment Variables Intellisense
interface ImportMetaEnv {
readonly VITE_GA_ID: string
readonly VITE_GTM_ID: string
readonly VITE_API_KEY: string
readonly VITE_AUTH_DOMAIN: string
readonly VITE_DATABASE_URL: string
readonly VITE_PROJECT_ID: string
readonly VITE_STORAGE_BUCKET: string
readonly VITE_MESSAGING_SENDER_ID: string
readonly VITE_APP_ID: string
readonly VITE_MEASUREMENT_ID: string
readonly VITE_BASE_URL: string
readonly VITE_BACKEND_GQL_URL: string
readonly VITE_BACKEND_WS_URL: string
readonly VITE_SENTRY_DSN?: string
readonly VITE_SENTRY_ENVIRONMENT?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}