summaryrefslogtreecommitdiff
path: root/src-tauri/tauri.conf.json
diff options
context:
space:
mode:
authorSolstice <solstice@local>2026-06-09 00:06:42 -0700
committerSolstice <solstice@local>2026-06-09 00:06:42 -0700
commit59708192eb000770ede58f21e5a397c65875eb3b (patch)
tree15c270cc1bb7e62094f45af0a91aa335c4e51ed2 /src-tauri/tauri.conf.json
chore: initial project scaffolding
- Tauri v2 + React + TypeScript (Vite) - Tailwind CSS v4 via @tailwindcss/vite - Zustand for state management - Design system: tokens.css, fonts, icons - tauri.conf.json: solstice, 900x640, min 700x520 - global.css imports tokens and Tailwind
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"
+ ]
+ }
+}