aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-27 17:11:38 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-08-27 17:11:38 +0200
commitf01751c3a9ada9ce3495b58cb4e0ce93a95be427 (patch)
treebeeacf576eb9cc35a946dffcaed7ad1757df1836 /README.md
parent98f227ca1be5f226d217dc488a921b0643da2bc8 (diff)
downloadFlightCore-f01751c3a9ada9ce3495b58cb4e0ce93a95be427.tar.gz
FlightCore-f01751c3a9ada9ce3495b58cb4e0ce93a95be427.zip
Add note about Tauri window behaviour
controlled by config file
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6c099e1a..69b769b4 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,25 @@ npm run tauri dev
> `npm run localhost`
> in two separate console windows
+### Tips
+
+Note that you can adjust the behaviour of Tauri windows in `tauri.conf.json`, e.g.
+
+```json
+"windows": [
+ {
+ "fullscreen": false,
+ "resizable": true,
+ "alwaysOnTop": true,
+ "x": 1200,
+ "y": 0,
+ "height": 500,
+ "width": 300,
+ "title": "FlightCore"
+ }
+]
+```
+
### Building
Release builds are generally done via CI. To build locally, make sure typescript is compiled (`./node_modules/.bin/rollup --config`), then run `npm run tauri build`.