Files
IdeA/crates/app-tauri/tauri.conf.json
Blomios 307ae71857 feat: add main features
Agents for developpement added + frontend add + backend added. Git viewer created + agent and template creator + layout and project creator
2026-06-06 01:27:01 +02:00

30 lines
593 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "IdeA",
"version": "0.1.0",
"identifier": "app.idea.ide",
"build": {
"frontendDist": "../../frontend/dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm --prefix ../frontend run dev"
},
"app": {
"windows": [
{
"title": "IdeA",
"width": 1280,
"height": 800,
"resizable": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["appimage", "nsis"],
"icon": ["icons/icon.png"]
}
}