aboutsummaryrefslogtreecommitdiff
path: root/src-tauri
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2022-10-04 22:05:26 +0200
committerGitHub <noreply@github.com>2022-10-04 22:05:26 +0200
commitdd2f37620b8a4d925bdb55badfb598c30d9c5ba8 (patch)
treee1f79d454123f51d2a5c0adbc9d4eeee07186df5 /src-tauri
parent7f0ee9be80988f13f1d234136725a03db0335ec5 (diff)
parent5912e98a02e799b7ad6c910567fe18988ab84798 (diff)
downloadFlightCore-dd2f37620b8a4d925bdb55badfb598c30d9c5ba8.tar.gz
FlightCore-dd2f37620b8a4d925bdb55badfb598c30d9c5ba8.zip
Merge pull request #2 from Alystrasz/feat/new-ui
Full UI rework
Diffstat (limited to 'src-tauri')
-rw-r--r--src-tauri/tauri.conf.json17
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
+}