Files
noteflow/client/src-tauri/tauri.conf.mac.json
Travis Vasceannie 100ca5596b
Some checks failed
CI / test-python (push) Failing after 16m26s
CI / test-rust (push) Has been cancelled
CI / test-typescript (push) Has been cancelled
mac
2026-01-24 12:47:35 -05:00

45 lines
1.0 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "NoteFlow",
"version": "0.1.0",
"identifier": "com.noteflow.desktop",
"build": {
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "NoteFlow",
"width": 1024,
"height": 768,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true
}
],
"security": {
"csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; connect-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com",
"capabilities": ["default"]
}
},
"bundle": {
"active": true,
"targets": ["app", "dmg"],
"icon": ["icons/icon.png", "icons/icon.ico"]
},
"plugins": {
"shell": {
"open": true
},
"fs": {},
"deep-link": {
"desktop": {
"schemes": ["noteflow"]
}
}
}
}