chore(gui-client): specify correct path to frontend (#9444)

When debugging logging is enabled, we see that Tauri currently iterates
through several possible paths of the frontend page before it finds the
one that it actually renders. We can fix this by specifying the URL
without the directory path.

```
2025-06-06T08:23:06.538Z DEBUG tauri::manager: Asset `src-frontend/index.html` not found; fallback to src-frontend/index.html.html
2025-06-06T08:23:06.538Z DEBUG tauri::manager: Asset `src-frontend/index.html` not found; fallback to src-frontend/index.html/index.html
2025-06-06T08:23:06.539Z DEBUG tauri::manager: Asset `src-frontend/index.html` not found; fallback to index.html
2025-06-06T08:23:06.566Z DEBUG firezone_gui_client::controller: Starting new instance of `Controller`
```
This commit is contained in:
Thomas Eizinger
2025-06-06 13:02:34 +02:00
committed by GitHub
parent b0d594100d
commit b79b5702f0

View File

@@ -66,7 +66,7 @@
{
"label": "main",
"title": "Firezone",
"url": "src-frontend/index.html",
"url": "index.html",
"fullscreen": false,
"resizable": false,
"width": 900,