This commit is contained in:
pandadev 2024-07-04 23:55:00 +02:00
commit f93ecf2b38
No known key found for this signature in database
GPG key ID: C39629DACB8E762F
47 changed files with 6578 additions and 0 deletions

48
src-tauri/tauri.conf.json Normal file
View file

@ -0,0 +1,48 @@
{
"productName": "Clipboard Manager",
"version": "0.1.0",
"identifier": "net.pandadev.clipboard-manager",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "pnpm nuxt dev",
"beforeBuildCommand": "pnpm nuxt generate"
},
"app": {
"windows": [
{
"title": "Clipboard Manager",
"titleBarStyle": "Overlay",
"fullscreen": false,
"resizable": false,
"height": 474,
"width": 750,
"minHeight": 474,
"maxHeight": 474,
"minWidth": 750,
"maxWidth": 750,
"decorations": false,
"center": true,
"shadow": false,
"transparent": true,
"visible": false
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"$schema": "../node_modules/@tauri-apps/cli/schema.json"
}