mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
44 lines
946 B
JSON
44 lines
946 B
JSON
{
|
|
"$schema": "../../crates/tauri-schema-generator/schemas/config.schema.json",
|
|
"productName": "Splashscreen",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tauri.splashscreen",
|
|
"build": {
|
|
"frontendDist": "dist"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "Tauri",
|
|
"width": 800,
|
|
"height": 600,
|
|
"visible": false
|
|
},
|
|
{
|
|
"label": "splashscreen",
|
|
"width": 400,
|
|
"height": 200,
|
|
"decorations": false,
|
|
"resizable": false,
|
|
"url": "splashscreen.html"
|
|
}
|
|
],
|
|
"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"
|
|
]
|
|
}
|
|
}
|