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

40 lines
876 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "AeThex OS",
"version": "1.0.0",
"identifier": "com.aethex.os",
"build": {
"frontendDist": "../dist/client",
"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
}
],
"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"
]
}
}