simple-inventory-editor/src-tauri/tauri.conf.json

39 lines
937 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "simple-inventory-editor",
"version": "0.1.0",
"identifier": "com.goldenwere.simple-inventory-editor",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "simple-inventory-editor",
"width": 1280,
"height": 800
}
],
"security": {
"assetProtocol": {
"enable": true,
"scope": ["*/**"]
},
"csp": "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' asset: https://asset.localhost blob: data:"
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}