Files
chrono-snap/src-tauri/tauri.conf.json
Julian Freeman 7a82f3fb81 fix image preview
2026-03-22 15:46:13 -04:00

40 lines
867 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "chrono-snap",
"version": "0.1.0",
"identifier": "top.volan.chrono-snap",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "chrono-snap",
"width": 800,
"height": 600
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' asset: https://asset.localhost tauri: http://localhost:*",
"assetProtocol": {
"enable": true,
"scope": ["**"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}