Files
TalkEdit/src-tauri/tauri.conf.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2026-03-24 23:51:02 -06:00
{
"$schema": "https://schema.tauri.app/config/2",
2026-03-25 01:22:30 -06:00
"productName": "TalkEdit",
2026-03-24 23:51:02 -06:00
"version": "0.1.0",
2026-03-25 01:22:30 -06:00
"identifier": "com.talkedit.app",
2026-03-24 23:51:02 -06:00
"build": {
2026-03-25 01:22:30 -06:00
"frontendDist": "../frontend/dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "cd frontend && npm run dev",
"beforeBuildCommand": "cd frontend && npm run build"
2026-03-24 23:51:02 -06:00
},
"app": {
"windows": [
{
2026-03-25 01:22:30 -06:00
"label": "main",
"title": "TalkEdit",
"width": 1400,
"height": 900,
"minWidth": 1024,
"minHeight": 700,
2026-03-24 23:51:02 -06:00
"resizable": true,
"fullscreen": false
}
],
"security": {
2026-03-28 15:09:56 -06:00
"csp": "default-src 'self'; connect-src 'self' http://127.0.0.1:8000; media-src 'self' http://127.0.0.1:8000; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: blob:"
2026-03-24 23:51:02 -06:00
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}