techdj/src-tauri/tauri.conf.json

39 lines
733 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "TechDJ",
"version": "0.1.0",
"identifier": "dev.computertech.techdj",
"build": {
"frontendDist": "../"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "TechDJ",
"width": 1280,
"height": 800,
"minWidth": 1024,
"minHeight": 600,
"decorations": true,
"fullscreen": false,
"resizable": true
}
],
"security": {
"assetProtocol": {
"enable": true,
"scope": [
"$HOME/**",
"$HOME/Music/**"
]
}
}
},
"bundle": {
"active": true,
"targets": ["deb"],
"icon": ["../icon.png"]
}
}