PDF-Forge/src-tauri/tauri.conf.json
Kilian Schuettler 30a0f1beb7 initial-commit
2025-01-31 01:44:54 +01:00

37 lines
713 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "pdf-forge",
"version": "0.1.0",
"identifier": "pdf-forge",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"decorations": false,
"title": "PDF Forge",
"width": 1920,
"height": 1080
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}