42 lines
758 B
JSON
42 lines
758 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-config-schema/schema.json",
|
|
"productName": "Cinch",
|
|
"version": "1.0.0",
|
|
"identifier": "com.cinch.app",
|
|
"build": {
|
|
"frontendDist": "../build",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": false,
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"windows": [
|
|
{
|
|
"title": "Cinch",
|
|
"width": 960,
|
|
"height": 700,
|
|
"minWidth": 700,
|
|
"minHeight": 500,
|
|
"resizable": true,
|
|
"decorations": false,
|
|
"transparent": false
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"icon": [
|
|
"icons/icon.ico",
|
|
"icons/icon.png"
|
|
]
|
|
},
|
|
"plugins": {
|
|
"shell": {
|
|
"open": true
|
|
}
|
|
}
|
|
}
|