-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Closed
Labels
area:UIRelated to UI/UX. For Frontend Developers.Related to UI/UX. For Frontend Developers.kind:bugThis is a clearly a bugThis is a clearly a bugkind:documentationneeds-triagelabel for new issues that we didn't triage yetlabel for new issues that we didn't triage yet
Description
What do you see as an issue?
In contributing-docs\03_contributors_quick_start.rst there should be something about using the CHOKIDAR_USEPOLLING environment variable to use hot reloading in the TypeScript React UI when developing with
breeze start-airflow --development
Solving the problem
Add in the docs that for WSL users contributing CHOKIDAR_USEPOLLING=true must be set in the environment to hot reloading the UI when developing. It could also be added to package.jsons dev command ie
{
"name": "ui",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22"
},
"homepage": "/ui",
"scripts": {
"dev": " CHOKIDAR_USEPOLLING=true vite --port 5173 --strictPort",
"build": "vite build",
"lint": "eslint --quiet && tsc --p tsconfig.app.json",
"lint:fix": "eslint --fix && tsc --p tsconfig.app.json",
"format": "pnpm prettier --write .",
"preview": "vite preview",
"codegen": "openapi-merge-cli && openapi-rq -i openapi.merged.json -c axios --format prettier -o openapi-gen --operationId",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
...
}
Anything else
No response
Are you willing to submit PR?
- Yes I am willing to submit a PR!
Code of Conduct
- I agree to follow this project's Code of Conduct
Metadata
Metadata
Assignees
Labels
area:UIRelated to UI/UX. For Frontend Developers.Related to UI/UX. For Frontend Developers.kind:bugThis is a clearly a bugThis is a clearly a bugkind:documentationneeds-triagelabel for new issues that we didn't triage yetlabel for new issues that we didn't triage yet