## Summary Removes `vite-plugin-checker` and all references to `VITE_DISABLE_TYPESCRIPT_CHECKER` / `VITE_DISABLE_ESLINT_CHECKER`. These background checks are no longer needed because our dev experience now relies on **independent** linters and type-checkers: - `npx nx lint:diff-with-main twenty-front` for ESLint - `npx nx typecheck twenty-front` for TypeScript Running these as separate processes (rather than inside Vite) is faster, gives cleaner output, and avoids the significant memory overhead that `vite-plugin-checker` introduces during `vite dev` and `vite build`. The old env vars to disable them are removed from `vite.config.ts`, `package.json` scripts, `nx.json`, `.env.example`, and all translated docs.
12 lines
337 B
Bash
12 lines
337 B
Bash
REACT_APP_SERVER_BASE_URL=http://localhost:3000
|
|
VITE_BUILD_SOURCEMAP=false
|
|
|
|
|
|
# ———————— Optional ————————
|
|
# REACT_APP_PORT=3001
|
|
# CHROMATIC_PROJECT_TOKEN=
|
|
# VITE_ENABLE_SSL=false
|
|
# VITE_HOST=localhost.com
|
|
# SSL_KEY_PATH="./certs/your-cert.key"
|
|
# SSL_CERT_PATH="./certs/your-cert.crt"
|
|
# IS_DEBUG_MODE=false |