Files
gestion_projet/src-tauri/tauri.conf.json
T
Mathew 78c4d253db Kanban drag&drop + notifications vivantes + total hebdo par membre
- Kanban: active le drag&drop en désactivant dragDropEnabled côté Tauri
  (le webview interceptait le drop OS et bloquait le DnD HTML5) ;
  surbrillance de la colonne cible pendant le glissement.
- Notifications: toast à la réception en temps réel, et clic sur une notif
  ouvre directement la tâche/le bug concerné (via focusEntity partagé).
- Feuille de temps: récap du total de la semaine par membre sous la grille.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-01 14:02:27 +02:00

43 lines
1.1 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "GameDev Tracker",
"version": "0.1.0",
"identifier": "com.gamedevtracker.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "GameDev Tracker",
"width": 1280,
"height": 820,
"minWidth": 960,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true,
"backgroundColor": "#0f1117",
"dragDropEnabled": false
}
],
"security": {
"csp": "default-src 'self'; connect-src 'self' ipc: http://ipc.localhost https://*.supabase.co wss://*.supabase.co; style-src 'self' 'unsafe-inline'; img-src 'self' data: https:; script-src 'self'"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}