From 11d615f807a111a5fe8aef9e5f2df2c613dadbe5 Mon Sep 17 00:00:00 2001 From: "Henry.Huang" Date: Tue, 11 Oct 2022 15:23:01 +0800 Subject: [PATCH] update: change tauri window size --- Makefile | 4 ++++ src-tauri/tauri.conf.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 70dcbee2..c3c21981 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,7 @@ soybean-admin-build: soybean-admin-push: docker push ${SoybeanAdminImg} + +# run tauri app: +run: + pnpm tauri dev diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e9fc6056..dd9d788d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -56,10 +56,10 @@ "windows": [ { "fullscreen": false, - "height": 600, + "height": 800, "resizable": true, "title": "soybean-admin", - "width": 800 + "width": 1000 } ] }