Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,3 +200,14 @@ Now you are ready to [create your first Flet app](create-flet-app).
When [creating](create-flet-app) and [running](running-app) Flet app using uv, you'll need to use `uv run` before each command!
:::

:::warning
On Windows, Flet apps may exit silently if `uv` uses **symbolic links** to manage the virtual environment. Flet requires **hardlink** (default) or **copy** mode to correctly locate its binary dependencies.

If you encounter this issue, force the link mode to `copy` in your `pyproject.toml`:

```toml
[tool.uv]
link-mode = "copy" #or "hardlink"
```
:::