Files
textDB/src-tauri/tauri.conf.json
2026-01-30 23:14:06 +01:00

36 lines
715 B
JSON

{
"$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,
"capabilities": ["main"]
}
},
"plugins": {
"sql": {
"preload": ["sqlite:text.db"]
}
}
}