1
0
Fork 0
WBM-installer/src-tauri/tauri.conf.json

59 lines
1.1 KiB
JSON

{
"package": {
"productName": "wbm-installer",
"version": "1.0.0"
},
"build": {
"distDir": "../public",
"devPath": "http://localhost:8080",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"tauri": {
"bundle": {
"active": true,
"targets": ["msi", "appimage", "app"],
"identifier": "com.developomp.wbm.installer",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.png",
"icons/icon.ico"
],
"category": "Utility",
"macOS": {
"useBootstrapper": false
},
"windows": {
"digestAlgorithm": "sha256"
}
},
"updater": {
"active": false
},
"allowlist": {
"dialog": {
"open": true
},
"path": {
"all": true
},
"shell": {
"open": true
}
},
"windows": [
{
"title": "WBM Installer",
"width": 500,
"height": 300,
"resizable": false,
"fullscreen": false
}
],
"security": {
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
}
}
}