Apographe/src-tauri/tauri.conf.json

43 lines
831 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "apographe",
"version": "0.1.0",
"identifier": "com.apographe.app",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "apographe",
"decorations": false,
"width": 800,
"height": 600
}
],
"security": {
"csp": "default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost",
"assetProtocol": {
"enable": true,
"scope": [
"$HOME/**",
"**"
]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}