feat: adapt Exile-ui for linux

This commit is contained in:
2026-06-01 08:22:29 +02:00
parent f7bc80c86b
commit 166ce7816d
426 changed files with 13082 additions and 8 deletions

36
src-tauri/tauri.conf.json Normal file
View File

@ -0,0 +1,36 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Exile UI",
"version": "0.1.0",
"identifier": "com.exileui.app",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"label": "main",
"title": "Exile UI",
"width": 820,
"height": 740
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["appimage", "deb"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}