initial commit
This commit is contained in:
35
src-tauri/tauri.conf.json
Normal file
35
src-tauri/tauri.conf.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"$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"]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user