aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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`.