Files
Inventory/src-tauri/tauri.conf.json
2024-12-22 10:53:10 -04:00

35 lines
632 B
JSON

{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "AE2",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../frontend"
},
"app": {
"windows": [
{
"title": "Inventory",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"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"
]
}
}