Files
thinkloom-openai-hackathon/src-tauri/tauri.conf.json
T

45 lines
1.3 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Thinkloom",
"version": "0.1.0",
"identifier": "com.thinkloom.desktop",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Thinkloom",
"width": 1440,
"height": 920,
"minWidth": 960,
"minHeight": 680,
"resizable": true,
"fullscreen": false,
"center": true
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' data: blob:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' ipc: http://ipc.localhost http://127.0.0.1:* https://api.openai.com; media-src 'self' blob:; object-src 'none'"
}
},
"bundle": {
"active": true,
"targets": [
"msi",
"nsis"
],
"shortDescription": "Ideas into writing, without losing the thread.",
"longDescription": "A local-first writing studio for exploring ideas, shaping drafts, and preserving creative process history.",
"category": "Productivity",
"copyright": "Copyright © 2026 Christopher Chambers",
"icon": [
"icons/icon.ico",
"icons/icon.png"
]
}
}