mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
36 lines
780 B
JSON
36 lines
780 B
JSON
{
|
|
"$schema": "../../crates/tauri-schema-generator/schemas/config.schema.json",
|
|
"productName": "Hello World",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tauri.helloworld",
|
|
"build": {
|
|
"frontendDist": ["index.html"]
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"title": "Welcome to Tauri!",
|
|
"width": 800,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"fullscreen": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; connect-src ipc: http://ipc.localhost"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"../.icons/32x32.png",
|
|
"../.icons/128x128.png",
|
|
"../.icons/128x128@2x.png",
|
|
"../.icons/icon.icns",
|
|
"../.icons/icon.ico"
|
|
]
|
|
}
|
|
}
|