This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
comicinfo-editor-v2/src-tauri/tauri.conf.json

56 lines
1 KiB
JSON
Raw Normal View History

2023-10-11 15:43:28 +00:00
{
"build": {
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build",
"devPath": "http://localhost:1420",
2023-11-17 12:56:09 +00:00
"distDir": "../dist",
2023-10-11 15:43:28 +00:00
"withGlobalTauri": false
},
"package": {
"productName": "comicinfo-editor-v2",
2023-11-17 12:57:21 +00:00
"version": "0.1.8"
2023-10-11 15:43:28 +00:00
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"dialog": {
"open": true
},
"path": {
"all": true
},
"os": {
"all": true
2023-10-11 15:43:28 +00:00
}
},
"bundle": {
"active": true,
"targets": "all",
2023-10-11 21:04:07 +00:00
"identifier": "com.comicinfo.editor",
2023-10-11 15:43:28 +00:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "comicinfo-editor-v2",
"width": 1280,
"height": 720
2023-10-11 15:43:28 +00:00
}
]
}
}