You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Nothing/src-tauri/tauri.conf.json

53 lines
1.0 KiB

{
"build": {
"beforeDevCommand": "yarn start --port 1420",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:1420",
"distDir": "../dist/Nothing",
"withGlobalTauri": false
},
"package": {
"productName": "Nothing",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "me.isark.poe.Nothing",
"targets": "all"
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"title": "Nothing",
"label": "Overlay",
"transparent": true,
"visible": false,
"decorations": false,
"alwaysOnTop": true,
"resizable": false,
"focus": false
}
]
}
}