Files
textDB/src-tauri/tauri.conf.json

50 lines
878 B
JSON
Raw Normal View History

2026-01-30 23:14:06 +01:00
{
"$schema": "./gen/schemas/desktop-schema.json",
"productName": "TextDB",
"version": "0.1.0",
"identifier": "com.textdb.app",
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devUrl": "http://localhost:5173",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": false,
"windows": [
{
"label": "main",
"title": "TextDB",
"width": 1100,
"height": 720,
"minWidth": 980,
"minHeight": 640,
"resizable": true
}
],
"security": {
"csp": null,
2026-01-30 23:37:06 +01:00
"capabilities": [
"main"
]
2026-01-30 23:14:06 +01:00
}
},
"plugins": {
"sql": {
2026-01-30 23:37:06 +01:00
"preload": [
"sqlite:text.db"
]
2026-01-30 23:14:06 +01:00
}
2026-01-30 23:37:06 +01:00
},
"bundle": {
"active": true,
"targets": [
"app",
"dmg"
],
"icon": [
"icons/icon.png"
]
2026-01-30 23:14:06 +01:00
}
}