Files
loader/src-tauri/tauri.macos.conf.json
2025-12-20 17:05:45 -07:00

37 lines
788 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Lncvrt Games Launcher",
"version": "1.0.2",
"identifier": "xyz.lncvrt.lncvrt-games-launcher-loader",
"build": {
"beforeDevCommand": "next dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "next build",
"frontendDist": "../out"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"width": 300,
"height": 300,
"resizable": false,
"maximizable": false,
"titleBarStyle": "Overlay",
"hiddenTitle": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["dmg"],
"macOS": {
"minimumSystemVersion": "13.7.8"
},
"icon": ["icons/icon.icns"]
}
}