summaryrefslogtreecommitdiff
path: root/src-tauri/tauri.conf.json
diff options
context:
space:
mode:
Diffstat (limited to 'src-tauri/tauri.conf.json')
-rw-r--r--src-tauri/tauri.conf.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
new file mode 100644
index 0000000..b39e99f
--- /dev/null
+++ b/src-tauri/tauri.conf.json
@@ -0,0 +1,39 @@
+{
+ "$schema": "https://schema.tauri.app/config/2",
+ "productName": "solstice",
+ "version": "0.1.0",
+ "identifier": "com.solstice.app",
+ "build": {
+ "beforeDevCommand": "npm run dev",
+ "devUrl": "http://localhost:1420",
+ "beforeBuildCommand": "npm run build",
+ "frontendDist": "../dist"
+ },
+ "app": {
+ "windows": [
+ {
+ "title": "Solstice",
+ "width": 900,
+ "height": 640,
+ "minWidth": 700,
+ "minHeight": 520,
+ "decorations": true,
+ "resizable": true
+ }
+ ],
+ "security": {
+ "csp": null
+ }
+ },
+ "bundle": {
+ "active": true,
+ "targets": "all",
+ "icon": [
+ "icons/32x32.png",
+ "icons/128x128.png",
+ "icons/128x128@2x.png",
+ "icons/icon.icns",
+ "icons/icon.ico"
+ ]
+ }
+}