Watch
1
0
Fork
You've already forked RedFlag
0
RedFlag/desktop/tauri.conf.json
Fimeg ffa7afbb58 desktop: put this computer health first
The Agent now owns one local view of machine health and top processes. RedFlag opens at dashboard scale, names itself plainly, and renders that evidence before updates.\n\nCI now compiles the Tauri bridge before release day.
2026-08-31 21:20:00 -04:00

34 lines
747 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "RedFlag",
"identifier": "com.redflag.local",
"build": {
"beforeDevCommand": "npm --prefix ../web run dev:desktop",
"devUrl": "http://127.0.0.1:3001/index.desktop.html",
"beforeBuildCommand": "npm --prefix ../web run build:desktop",
"frontendDist": "../web/dist-desktop"
},
"app": {
"windows": [
{
"label": "main",
"title": "RedFlag",
"width": 980,
"height": 760,
"minWidth": 760,
"minHeight": 620,
"resizable": true,
"visible": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": false,
"icon": [
"icons/icon.png"
]
}
}