AeThex-OS/shell/aethex-shell/src-tauri/tauri.conf.json

51 lines
1.1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "AeThex-OS",
"version": "0.1.0",
"identifier": "com.aethex.os",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "AeThex-OS",
"width": 1280,
"height": 800,
"fullscreen": false,
"center": true,
"resizable": true,
"minimizable": true,
"maximizable": true,
"closable": true,
"decorations": true
}
],
"security": {
"csp": null
},
"trayIcon": {
"id": "main",
"iconPath": "icons/32x32.png",
"iconAsTemplate": true,
"menuOnLeftClick": false,
"tooltip": "AeThex-OS"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {}
}