48 lines
910 B
JSON
48 lines
910 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "chatapp",
|
|
"version": "1.0.0",
|
|
"identifier": "com.strawberries.chatapp",
|
|
"build": {
|
|
"beforeDevCommand": "yarn dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "yarn build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "chatapp",
|
|
"width": 800,
|
|
"height": 600,
|
|
"decorations": true,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"center": true,
|
|
"theme": "Dark"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": [
|
|
"appimage",
|
|
"deb",
|
|
"nsis",
|
|
"msi",
|
|
"app",
|
|
"dmg"
|
|
],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|