mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
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:
@@ -66,7 +66,7 @@
|
||||
{
|
||||
"label": "main",
|
||||
"title": "Firezone",
|
||||
"url": "src-frontend/index.html",
|
||||
"url": "index.html",
|
||||
"fullscreen": false,
|
||||
"resizable": false,
|
||||
"width": 900,
|
||||
|
||||
Reference in New Issue
Block a user