diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-02-13 22:04:48 -0700 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-02-13 22:05:59 -0700 |
commit | 8a0c92f80a797f40bc06f524d37247273351be8e (patch) | |
tree | 8d0891532dfef753102762f382a7ef3cf002d73c /app/Tauri.toml |
Minimum app setup
Diffstat (limited to 'app/Tauri.toml')
-rw-r--r-- | app/Tauri.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/Tauri.toml b/app/Tauri.toml new file mode 100644 index 0000000..ad2aa7f --- /dev/null +++ b/app/Tauri.toml @@ -0,0 +1,19 @@ +identifier = "foxfleet" + +[build] +dev-url = "http://localhost:5173" +frontend-dist = "../ui/dist/" + +before-dev-command.cwd = "../ui/" +before-dev-command.script = "npx vite" + +before-build-command.cwd = "../ui/" +before-build-command.script = "npx vite build" + +[[app.windows]] +title = "Foxfleet" +width = 800 +height = 600 + +[bundle] +active = true |