Agents for developpement added + frontend add + backend added. Git viewer created + agent and template creator + layout and project creator
30 lines
593 B
JSON
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"]
|
|
}
|
|
}
|