Files
SpectralPlot/src-tauri/tauri.conf.json

84 lines
1.4 KiB
JSON
Raw Normal View History

2024-07-03 09:12:31 +08:00
{
"build": {
"beforeDevCommand": "npm run dev",
2024-08-21 14:19:40 +08:00
"beforeBuildCommand": " npm run mybuild & npm run build",
2024-07-03 09:12:31 +08:00
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
2024-08-21 14:19:40 +08:00
2024-07-03 09:12:31 +08:00
},
2024-08-21 14:19:40 +08:00
2024-07-03 09:12:31 +08:00
"package": {
"productName": "SpectralPlot",
2025-06-30 13:51:45 +08:00
"version": "0.6.66"
2024-07-03 09:12:31 +08:00
},
"tauri": {
"allowlist": {
"process": {
"all": true
},
"all": false,
"shell": {
"all": false,
"open": true
},
"fs": {
2024-07-03 09:12:31 +08:00
"scope": ["**"],
"all": true
},
"dialog": {
"all": true
},
"window": {
"all": true
}
},
"windows": [
{
"title": "Spectral Plot",
"width": 0,
"height":0,
"resizable": true,
"fullscreen": false,
"decorations": true,
"minimizable": true,
"maximizable": true,
"visible": true
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "lele.rlx",
"resources": [
"config.json","is11lib.dll" , "iris_is3lib.dll",
"msvcp140.dll",
"vcruntime140.dll",
"vcruntime140_1.dll",
"ucrtbase.dll"
2024-07-03 09:12:31 +08:00
],
2024-08-21 14:19:40 +08:00
"windows": {
},
2024-07-03 09:12:31 +08:00
"icon": [
"icons/icon.ico",
"icons/icon.ico",
"icons/icon.ico",
"icons/icon.ico",
"icons/icon.ico"
2024-07-03 09:12:31 +08:00
]
}
}
}