Stirling-PDF/frontend/src-tauri/tauri.conf.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.1 KiB
JSON
Raw Normal View History

2025-06-05 14:56:16 +01:00
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Stirling-PDF",
2025-06-09 10:04:40 +01:00
"version": "2.0.0",
"identifier": "stirling.pdf.dev",
2025-06-05 14:56:16 +01:00
"build": {
2025-06-09 10:04:40 +01:00
"frontendDist": "../dist",
2025-06-05 14:56:16 +01:00
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "Stirling-PDF",
2025-07-08 14:45:14 +01:00
"width": 1024,
"height": 768,
2025-06-05 14:56:16 +01:00
"resizable": true,
"fullscreen": false
}
2025-07-01 14:22:19 +01:00
]
2025-06-05 14:56:16 +01:00
},
"bundle": {
"active": true,
2025-07-08 15:19:02 +01:00
"targets": ["deb", "rpm", "dmg", "msi"],
2025-06-05 14:56:16 +01:00
"icon": [
2025-07-08 14:45:14 +01:00
"icons/icon.png",
2025-06-05 14:56:16 +01:00
"icons/icon.icns",
"icons/icon.ico"
2025-06-09 10:04:40 +01:00
],
"resources": [
"libs/*.jar",
"runtime/jre/**/*"
2025-07-04 14:33:59 +01:00
],
"fileAssociations": [
{
"ext": ["pdf"],
"name": "PDF Document",
"description": "Open PDF files with Stirling-PDF",
2025-07-15 15:58:45 +01:00
"role": "Editor",
"mimeType": "application/pdf"
2025-07-04 14:33:59 +01:00
}
2025-06-05 14:56:16 +01:00
]
2025-06-09 10:04:40 +01:00
},
"plugins": {
"shell": {
"open": true
2025-07-04 14:33:59 +01:00
},
"fs": {
"requireLiteralLeadingDot": false
2025-06-09 10:04:40 +01:00
}
2025-06-05 14:56:16 +01:00
}
}