Files
coco-app/src-tauri/tauri.conf.json
BiggerRain 711f7cf57c feat: add hotkey hook (#101)
* feat: add hotkey hook

* chore: debug shortcut keys

* chore: shortcut key echo

* chore: add number key

* chore: remove log

* build: build config
2025-01-15 10:33:51 +08:00

100 lines
2.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2.0.0",
"productName": "Coco AI",
"version": "0.1.0",
"identifier": "rs.coco.app",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"title": "Coco AI",
"url": "/ui",
"height": 590,
"width": 680,
"decorations": false,
"minimizable": false,
"maximizable": false,
"skipTaskbar": true,
"resizable": false,
"shadow": true,
"transparent": true,
"fullscreen": false,
"center": false,
"windowEffects": {
"effects": [],
"radius": 12
}
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico",
"icons/icon.png",
"icons/Square30x30Logo.png",
"icons/Square44x44Logo.png",
"icons/Square71x71Logo.png",
"icons/Square89x89Logo.png",
"icons/Square107x107Logo.png",
"icons/Square142x142Logo.png",
"icons/Square150x150Logo.png",
"icons/Square284x284Logo.png",
"icons/Square310x310Logo.png",
"icons/StoreLogo.png"
],
"macOS": {
"entitlements": "./Entitlements.plist",
"dmg": {
"appPosition": {
"x": 180,
"y": 140
},
"applicationFolderPosition": {
"x": 480,
"y": 140
}
}
},
"resources": ["assets", "icons"]
},
"plugins": {
"features": {
"protocol": ["all"]
},
"window": {},
"websocket": {},
"shell": {},
"globalShortcut": {},
"deep-link": {
"schema": "coco",
"mobile": [
{ "host": "app.infini.cloud", "pathPrefix": ["/open"] },
{ "host": "localhost:9000" }
],
"desktop": {
"schemes": ["coco"]
}
}
}
}