Files
frangipane-client/src-tauri/tauri.conf.json

55 lines
1.0 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "frangipane",
"version": "0.1.0",
"identifier": "com.strawberries.frangipane",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "frangipane",
"width": 800,
"height": 600,
"decorations": true,
"resizable": true,
"fullscreen": false,
"center": true,
"theme": "Dark",
"dragDropEnabled": true
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": [
"**"
]
}
}
},
"bundle": {
"active": true,
"targets": [
"appimage",
"deb",
"nsis",
"msi",
"app",
"dmg"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}