🐛[bugfix] ビルド時のエラー/ワーニングが発生する問題を修正

インストーラーのURLを修正
This commit is contained in:
misyaguziya
2025-05-03 12:41:15 +09:00
parent 3210d5c898
commit c20b58a011
2 changed files with 2 additions and 18 deletions

View File

@@ -4,7 +4,7 @@ use tauri::Manager;
pub fn run() {
tauri::Builder::default()
.setup(|app| {
let main_window = app.get_webview_window("main").unwrap(); // `main_window` is declared here for all builds
let _main_window = app.get_webview_window("main").unwrap(); // `main_window` is declared here for all builds
#[cfg(debug_assertions)]
{ main_window.open_devtools(); }