diff options
Diffstat (limited to 'src-tauri/tauri.conf.json')
-rw-r--r-- | src-tauri/tauri.conf.json | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 52dabec7..e81faee5 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,10 +1,10 @@ { "$schema": "../node_modules/@tauri-apps/cli/schema.json", "build": { - "beforeBuildCommand": "", - "beforeDevCommand": "", - "devPath": "http://localhost:8080/", - "distDir": "../dist" + "beforeBuildCommand": "cd src-vue && npm run build", + "beforeDevCommand": "cd src-vue && npm run dev", + "devPath": "http://localhost:5173/", + "distDir": "../src-vue/dist" }, "package": { "productName": "flightcore", @@ -62,8 +62,13 @@ { "fullscreen": false, "resizable": true, - "title": "FlightCore" + "decorations": false, + "title": "FlightCore", + "height": 600, + "minHeight": 300, + "width": 1000, + "minWidth": 600 } ] } -}
\ No newline at end of file +} |