fixed all warnings :D

This commit is contained in:
Oliver Bryan
2025-12-31 18:08:47 +00:00
parent 70ef02f790
commit 8b6dad8a2a
23 changed files with 138 additions and 145 deletions

View File

@@ -1,10 +1,7 @@
{
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": [
"core:default",
"opener:default"
]
"$schema": "../gen/schemas/desktop-schema.json",
"identifier": "default",
"description": "Capability for the main window",
"windows": ["main"],
"permissions": ["core:default", "opener:default"]
}

View File

@@ -1,31 +1,31 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "issue",
"version": "0.1.0",
"identifier": "com.hex248.issue",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Issue Project Manager",
"width": 1600,
"height": 900,
"minWidth": 640,
"minHeight": 360,
"decorations": false
}
],
"security": {
"csp": null
"$schema": "https://schema.tauri.app/config/2",
"productName": "issue",
"version": "0.1.0",
"identifier": "com.hex248.issue",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Issue Project Manager",
"width": 1600,
"height": 900,
"minWidth": 640,
"minHeight": 360,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all"
}
},
"bundle": {
"active": true,
"targets": "all"
}
}