tauri/examples/splashscreen/tauri.conf.json

44 lines
917 B
JSON
Raw Normal View History

{
"$schema": "../../core/tauri-config-schema/schema.json",
"productName": "Splashscreen",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"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"
]
}
}