mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-02 03:25:53 +01:00
d6cd8b78f1
* feat: decouple package deps and introduce yarn workspaces * update root directory * fix * fix scripts * fix lint * update path in scripts * remove yarn.lock files from packages * ignore workspace * dummy * dummy * remove comment check * revert workflow changes * ignore ws when installing gh actions * remove log * update path * fix * fix typo
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
/// <reference types="vite-plugin-pwa/vanillajs" />
|
|
/// <reference types="vite-plugin-pwa/info" />
|
|
/// <reference types="vite-plugin-svgr/client" />
|
|
interface ImportMetaEnv {
|
|
// The port to run the dev server
|
|
VITE_APP_PORT: string;
|
|
|
|
VITE_APP_BACKEND_V2_GET_URL: string;
|
|
VITE_APP_BACKEND_V2_POST_URL: string;
|
|
|
|
// collaboration WebSocket server (https: string
|
|
VITE_APP_WS_SERVER_URL: string;
|
|
|
|
// set this only if using the collaboration workflow we use on excalidraw.com
|
|
VITE_APP_PORTAL_URL: string;
|
|
VITE_APP_AI_BACKEND: string;
|
|
|
|
VITE_APP_FIREBASE_CONFIG: string;
|
|
|
|
// whether to disable live reload / HMR. Usuaully what you want to do when
|
|
// debugging Service Workers.
|
|
VITE_APP_DEV_DISABLE_LIVE_RELOAD: string;
|
|
|
|
VITE_APP_DISABLE_SENTRY: string;
|
|
|
|
// Set this flag to false if you want to open the overlay by default
|
|
VITE_APP_COLLAPSE_OVERLAY: string;
|
|
|
|
// Enable eslint in dev server
|
|
VITE_APP_ENABLE_ESLINT: string;
|
|
|
|
VITE_APP_PLUS_LP: string;
|
|
|
|
VITE_APP_PLUS_APP: string;
|
|
|
|
VITE_APP_GIT_SHA: string;
|
|
|
|
MODE: string;
|
|
|
|
DEV: string;
|
|
PROD: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|