lume/src-tauri/tauri.windows.conf.json

34 lines
727 B
JSON
Raw Normal View History

2023-08-28 05:19:40 +00:00
{
2023-09-06 00:46:31 +00:00
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
2023-08-28 05:19:40 +00:00
"tauri": {
"windows": [
2023-08-29 09:11:17 +00:00
{
2023-09-29 05:40:02 +00:00
"width": 300,
"height": 300,
2023-08-29 09:11:17 +00:00
"decorations": false,
"title": "Lume",
"center": true,
"resizable": false,
"label": "splashscreen",
"url": "splashscreen"
},
2023-08-28 05:19:40 +00:00
{
"width": 1080,
"height": 800,
"minWidth": 1080,
"minHeight": 800,
2023-10-06 00:40:50 +00:00
"decorations": false,
2023-08-28 05:19:40 +00:00
"resizable": true,
"theme": "Dark",
"title": "Lume",
2023-09-04 00:44:57 +00:00
"transparent": false,
2023-08-28 05:19:40 +00:00
"center": true,
"fullscreen": false,
"hiddenTitle": true,
"visible": false,
2023-09-02 05:15:48 +00:00
"fileDropEnabled": true
2023-08-28 05:19:40 +00:00
}
]
}
}