import { defineConfig, loadEnv } from "vite"; import react from "@vitejs/plugin-react"; import * as path from "path"; import { execSync } from "node:child_process"; const envPath = path.resolve(process.cwd(), "..", ".."); // Resolve the version string shown in the UI. // Priority: explicit APP_VERSION env (injected by Docker/CI, where .git is absent), // then `git describe` for local builds, then the package.json version as a fallback. function resolveAppVersion(cwd: string): string { const fromEnv = process.env.APP_VERSION?.trim(); if (fromEnv) return fromEnv; try { return execSync("git describe --tags --always", { cwd, stdio: ["ignore", "pipe", "ignore"], }) .toString() .trim(); } catch { return `v${process.env.npm_package_version ?? "0.0.0"}`; } } export default defineConfig(({ mode }) => { const { APP_URL, FILE_UPLOAD_SIZE_LIMIT, FILE_IMPORT_SIZE_LIMIT, DRAWIO_URL, CLOUD, SUBDOMAIN_HOST, COLLAB_URL, BILLING_TRIAL_DAYS, POSTHOG_HOST, POSTHOG_KEY, } = loadEnv(mode, envPath, ""); return { define: { "process.env": { APP_URL, FILE_UPLOAD_SIZE_LIMIT, FILE_IMPORT_SIZE_LIMIT, DRAWIO_URL, CLOUD, SUBDOMAIN_HOST, COLLAB_URL, BILLING_TRIAL_DAYS, POSTHOG_HOST, POSTHOG_KEY, }, APP_VERSION: JSON.stringify(resolveAppVersion(envPath)), }, plugins: [react()], build: { rolldownOptions: { output: { advancedChunks: { groups: [ { name: "vendor-mantine", test: /[\\/]node_modules[\\/]@mantine[\\/]/, }, ], }, }, }, }, resolve: { alias: { "@": "/src", }, }, server: { proxy: { "/api": { target: APP_URL, changeOrigin: false, }, "/socket.io": { target: APP_URL, ws: true, rewriteWsOrigin: true, }, "/collab": { target: APP_URL, ws: true, rewriteWsOrigin: true, }, }, }, }; });