Files
linsa-linsa-io/app/tauri.conf.json
Nikita 8bd659ec6c Tauri macOS dev buiild/bundle (#138)
* try do build

* fixes

* do build

* change config
2024-09-05 12:34:46 +03:00

30 lines
600 B
JSON

{
"productName": "Learn Anything",
"version": "0.1.0",
"identifier": "xyz.learnanything.desktop",
"build": {
"frontendDist": "https://dev.learn-anything.xyz",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "bun dev"
},
"app": {
"windows": [
{
"title": "Learn Anything",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"]
}
}