Files
ToDo/src-tauri/tauri.conf.json
MrDanil 4f4047b097
Publish Release / publish-tauri (--bundles deb, src-tauri/target/release/bundle/deb/**.pkg.tar.zst, arch-latest) (push) Has been cancelled
Publish Release / publish-tauri (src-tauri/target/release/bundle/appimage/**.AppImage, src-tauri/target/release/bundle/deb/**.deb, ubuntu-latest) (push) Has been cancelled
Publish Release / publish-tauri (src-tauri/target/release/bundle/msi/**.msi, src-tauri/target/release/bundle/nsis/**.exe, window-latest) (push) Has been cancelled
v2.0.0-beta - Убрана тяжелая зависимость iconify, изменён дизайн.
В процессе: синхронизация между устройствами
2024-10-08 08:07:29 +07:00

37 lines
720 B
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"productName": "to-do-app",
"mainBinaryName": "to-do-app",
"version": "1.7.0",
"identifier": "com.a-dot.dev",
"plugins": {},
"app": {
"security": {
"csp": null
},
"windows": [
{
"width": 800,
"height": 600,
"decorations": false,
"title": "To Do List"
}
]
}
}