addmon/apps/web/src-tauri/tauri.conf.json
Syahdan 5929358754 refactor: move monitor page to index route and configure Tauri window
- Move monitor page content from /monitor to / (index route)
- Create placeholder monitor_.tsx route
- Remove Header component from root layout
- Configure Tauri window with transparent titlebar and dark background
- Enable macOS private API for window styling
2025-12-29 07:36:13 +07:00

40 lines
847 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "addmon",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:3001",
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build"
},
"app": {
"windows": [
{
"title": "addmon",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false,
"titleBarStyle": "Transparent",
"backgroundColor": "#0a0a0a"
}
],
"macOSPrivateApi": 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"
]
}
}