diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-27 17:11:38 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-08-27 17:11:38 +0200 |
commit | f01751c3a9ada9ce3495b58cb4e0ce93a95be427 (patch) | |
tree | beeacf576eb9cc35a946dffcaed7ad1757df1836 /README.md | |
parent | 98f227ca1be5f226d217dc488a921b0643da2bc8 (diff) | |
download | FlightCore-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.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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`. |