36 lines
685 B
JSON
36 lines
685 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/**"]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["deb"],
|
|
"icon": ["../icon.png"]
|
|
}
|
|
}
|