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.

36 lines
713 B
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",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "./public",
"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"
]
}
}