AeThex-OS/src-tauri/tauri.conf.json
2025-12-26 22:55:28 -07:00

48 lines
1.2 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "AeThex OS",
"version": "1.0.0",
"identifier": "com.aethex.os",
"build": {
"frontendDist": "../dist/public",
"devUrl": "http://localhost:5000",
"beforeDevCommand": "npm run dev:client",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "AeThex OS - Web Desktop Platform",
"width": 1400,
"height": 900,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true,
"decorations": true,
"transparent": false
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"publisher": "AeThex Corporation",
"copyright": "Copyright © 2025 AeThex Corporation",
"category": "Productivity",
"shortDescription": "AeThex Web Desktop Platform",
"longDescription": "A modular web desktop platform with authentication, project management, and extensible features."
}
}