Files
ICCery/src-tauri/tauri.conf.json
T

75 lines
1.5 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "ICCery",
"version": "0.8.3",
"identifier": "com.gronod.iccery",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "ICCery",
"width": 1280,
"height": 800,
"minWidth": 1100,
"minHeight": 700
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"argyll/**/*"
],
"macOS": {
"minimumSystemVersion": "10.15",
"dmg": {
"background": "icons/dmg-background.png",
"windowSize": {
"width": 660,
"height": 400
},
"appPosition": {
"x": 180,
"y": 220
},
"applicationFolderPosition": {
"x": 480,
"y": 220
}
}
},
"windows": {
"signCommand": "sign.cmd %1",
"webviewInstallMode": {
"type": "skip"
},
"wix": {
"bannerPath": "icons/wix-banner.bmp",
"dialogImagePath": "icons/wix-dialog.bmp"
},
"nsis": {
"installMode": "both",
"installerIcon": "icons/icon.ico",
"headerImage": "icons/nsis-header.bmp",
"sidebarImage": "icons/nsis-sidebar.bmp",
"installerHooks": "windows/hooks.nsh"
}
}
}
}