40 lines
830 B
JSON
40 lines
830 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"identifier": "com.paw.paw-gui",
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"url": "/",
|
|
"title": "paw-gui",
|
|
"width": 1920,
|
|
"height": 1080,
|
|
"minWidth": 1440,
|
|
"minHeight": 700,
|
|
"maxWidth": 2560,
|
|
"maxHeight": 1440,
|
|
"visible": true,
|
|
"hiddenTitle": true,
|
|
"decorations": false,
|
|
"center": true
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/logo.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"targets": ["nsis"],
|
|
"windows": {
|
|
"nsis": {
|
|
"installMode": "perMachine",
|
|
"installerHooks": "./install-scripts/win-hooks.nsi"
|
|
}
|
|
}
|
|
}
|
|
}
|