diff options
Diffstat (limited to 'src-tauri/tauri.conf.json')
-rw-r--r-- | src-tauri/tauri.conf.json | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 52dabec7..8818ee79 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,9 +1,9 @@ { "$schema": "../node_modules/@tauri-apps/cli/schema.json", "build": { - "beforeBuildCommand": "", - "beforeDevCommand": "", - "devPath": "http://localhost:8080/", + "beforeBuildCommand": "cd src-vue && npm run build", + "beforeDevCommand": "cd src-vue && npm run dev", + "devPath": "http://localhost:5173/", "distDir": "../dist" }, "package": { @@ -62,7 +62,12 @@ { "fullscreen": false, "resizable": true, - "title": "FlightCore" + "decorations": false, + "title": "FlightCore", + "height": 600, + "minHeight": 600, + "width": 1000, + "minWidth": 1000 } ] } |