Files
Oxyde/src-tauri/tauri.conf.json
Qdust41 c7cb73b360
Some checks failed
Release / release (ubuntu-22.04) (push) Has been cancelled
Release / release (windows-latest) (push) Has been cancelled
fixed up the frontend display for the local messages
2026-04-19 02:04:54 -04:00

37 lines
733 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "oxyde",
"version": "0.1.3",
"identifier": "com.jimweaver.oxyde",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "Oxyde",
"width": 1280,
"height": 720,
"resizable": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["deb", "nsis", "appimage"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}