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

58 lines
952 B
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "tauri-genshin",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"all": true,
"fs": {
"all": true,
"scope": ["**", "**/*"]
},
"http": {
"all": true,
"request": true,
"scope": ["https://**", "http://**"]
},
"shell": {
"all": false,
"open": true
}
},
"bundle": {
"active": true,
"icon": ["icons/icon.png", "icons/icon.ico"],
"identifier": "tauri-genshin",
"targets": "all",
"windows": {
"wix": {
"language": "zh-CN"
}
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "tauri-genshin",
"width": 1540,
"height": 912
}
]
}
}