chad/client/src-tauri/tauri.conf.json
Никита Круглицкий 1d2b14d4c1
Some checks failed
Deploy / server (push) Failing after 9s
Погнали
closes #1
2025-10-01 18:40:12 +06:00

38 lines
748 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "chad",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "yarn dev",
"beforeBuildCommand": "yarn build"
},
"app": {
"windows": [
{
"title": "Chad",
"width": 800,
"height": 600,
"resizable": false,
"fullscreen": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}