Files
CodeNomad/packages/tauri-app/src-tauri/tauri.conf.json
Shantur Rathore adbe0399b2 Fix tauri conf
2025-11-21 20:53:40 +00:00

45 lines
974 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "CodeNomad",
"version": "0.1.0",
"identifier": "ai.opencode.client",
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "npm run bundle:server",
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "CodeNomad",
"url": "index.html",
"width": 1400,
"height": 900,
"minWidth": 800,
"minHeight": 600,
"center": true,
"resizable": true,
"fullscreen": false,
"decorations": true
}
],
"security": {
"assetProtocol": {
"scope": ["**"]
}
}
},
"bundle": {
"active": true,
"resources": [
"../src/index.html",
"../src/icon.png",
"resources/server"
],
"icon": ["icon.icns", "icon.ico", "icon.png"],
"targets": ["app", "appimage", "deb", "rpm", "nsis"]
}
}