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 } ] }