tauri/examples/splashscreen/tauri.conf.json

57 lines
1.1 KiB
JSON

{
"$schema": "../../tooling/cli/schema.json",
"build": {
"distDir": "dist",
"devPath": "dist",
"withGlobalTauri": true
},
"package": {
"productName": "Splashscreen",
"version": "0.1.0"
},
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "com.tauri.dev",
"icon": [
"../.icons/32x32.png",
"../.icons/128x128.png",
"../.icons/128x128@2x.png",
"../.icons/icon.icns",
"../.icons/icon.ico"
],
"resources": [],
"externalBin": [],
"copyright": "",
"category": "DeveloperTool"
},
"allowlist": {
"all": false
},
"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'"
},
"updater": {
"active": false
}
}
}