36 lines
821 B
JSON
36 lines
821 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
|
|
"productName": "RuView Desktop",
|
|
"version": "0.4.4",
|
|
"identifier": "net.ruv.ruview",
|
|
"build": {
|
|
"frontendDist": "ui/dist",
|
|
"devUrl": "http://localhost:5173",
|
|
"beforeDevCommand": "cd ../ui && npm run dev",
|
|
"beforeBuildCommand": "cd ../ui && npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "RuView Desktop",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 900,
|
|
"minHeight": 600,
|
|
"resizable": true
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|