feat: add windows support for v4

This commit is contained in:
reya
2024-05-18 21:02:04 +07:00
parent f60e438a64
commit 82689bf3c3
5 changed files with 407 additions and 491 deletions

View File

@@ -1,15 +1,19 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"app": {
"windows": [
{
"title": "Lume",
"label": "main",
"width": 500,
"height": 800,
"minWidth": 500,
"minHeight": 800
}
]
}
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"app": {
"windows": [
{
"title": "Lume",
"label": "main",
"width": 500,
"height": 800,
"minWidth": 500,
"minHeight": 800,
"transparent": true,
"windowEffects": {
"effects": ["mica"]
}
}
]
}
}