2021-05-03 19:16:34 +03:00
|
|
|
{
|
2023-04-07 18:11:05 +03:00
|
|
|
"$schema": "../../core/tauri-config-schema/schema.json",
|
2024-02-03 06:39:48 +03:00
|
|
|
"productName": "Commands",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"identifier": "com.tauri.dev",
|
2021-05-03 19:16:34 +03:00
|
|
|
"build": {
|
2024-02-03 06:39:48 +03:00
|
|
|
"frontendDist": ["index.html"]
|
2022-06-22 02:36:26 +03:00
|
|
|
},
|
2024-02-03 06:39:48 +03:00
|
|
|
"app": {
|
|
|
|
"withGlobalTauri": true,
|
2021-05-03 19:16:34 +03:00
|
|
|
"windows": [
|
|
|
|
{
|
|
|
|
"title": "Welcome to Tauri!",
|
|
|
|
"width": 800,
|
|
|
|
"height": 600,
|
|
|
|
"resizable": true,
|
|
|
|
"fullscreen": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"security": {
|
2023-09-11 18:25:06 +03:00
|
|
|
"csp": "default-src 'self'; connect-src ipc: http://ipc.localhost"
|
2021-05-03 19:16:34 +03:00
|
|
|
}
|
2024-02-03 06:39:48 +03:00
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
|
|
|
"icon": [
|
|
|
|
"../.icons/32x32.png",
|
|
|
|
"../.icons/128x128.png",
|
|
|
|
"../.icons/128x128@2x.png",
|
|
|
|
"../.icons/icon.icns",
|
|
|
|
"../.icons/icon.ico"
|
|
|
|
]
|
2021-05-03 19:16:34 +03:00
|
|
|
}
|
2024-02-03 06:39:48 +03:00
|
|
|
}
|