Stirling-PDF/frontend/src-tauri/tauri.conf.json
2025-06-09 10:04:40 +01:00

44 lines
820 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Stirling-PDF",
"version": "2.0.0",
"identifier": "stirling.pdf.dev",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "Stirling-PDF",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"libs/*.jar"
]
},
"plugins": {
"shell": {
"open": true
}
}
}