Files
watermark-wizard/src-tauri/tauri.conf.json
2026-01-20 22:08:56 -04:00

41 lines
983 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "watermark-wizard",
"version": "1.0.1",
"identifier": "top.volan.watermark-wizard",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "水印精灵 v1.0.1",
"width": 1650,
"height": 1000
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' asset: http://asset.localhost https://asset.localhost blob: data:",
"assetProtocol": {
"enable": true,
"scope": ["**"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"resources": ["resources/lama_fp32.onnx", "resources/en_PP-OCRv3_det_infer.onnx"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}