Files
easygallery/src-tauri/tauri.conf.json
T
2026-06-27 08:20:12 +08:00

38 lines
724 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "easygallery",
"version": "0.1.0",
"identifier": "dev.zhhe.easygallery",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Easy Gallery",
"width": 1200,
"height": 800,
"center": true
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": ["**"]
}
}
},
"bundle": {
"active": true,
"targets": "nsis",
"icon": [
"icons/64.ico",
"icons/128.ico"
]
}
}