2021-05-21 22:50:40 +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
|
|
|
"identifier": "com.tauri.dev",
|
2021-05-21 22:50:40 +03:00
|
|
|
"build": {
|
2024-02-03 06:39:48 +03:00
|
|
|
"frontendDist": "../public"
|
2021-05-21 22:50:40 +03:00
|
|
|
},
|
2024-02-03 06:39:48 +03:00
|
|
|
"app": {
|
|
|
|
"withGlobalTauri": true,
|
2021-05-21 22:50:40 +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 blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'; connect-src ipc: http://ipc.localhost"
|
2021-05-21 22:50:40 +03:00
|
|
|
}
|
2024-02-03 06:39:48 +03:00
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
|
|
|
"icon": [
|
|
|
|
"../../../../../examples/.icons/32x32.png",
|
|
|
|
"../../../../../examples/.icons/128x128.png",
|
|
|
|
"../../../../../examples/.icons/128x128@2x.png",
|
|
|
|
"../../../../../examples/.icons/icon.icns",
|
|
|
|
"../../../../../examples/.icons/icon.ico"
|
|
|
|
]
|
2021-05-21 22:50:40 +03:00
|
|
|
}
|
2024-02-03 06:39:48 +03:00
|
|
|
}
|