creddy/src-tauri/tauri.conf.json

89 lines
1.8 KiB
JSON
Raw Normal View History

2022-08-14 20:27:41 +00:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
2024-06-02 00:17:50 +00:00
"frontendDist": "../dist",
"devUrl": "http://localhost:5173"
2022-08-14 20:27:41 +00:00
},
2024-06-02 00:17:50 +00:00
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"targets": "all",
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"wix": {
"fragmentPaths": [
"conf/cli.wxs"
],
"componentRefs": [
"CliBinary",
"AddToPath"
]
}
},
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
2022-08-14 20:27:41 +00:00
},
2024-06-02 00:17:50 +00:00
"resources": [],
"shortDescription": "",
"linux": {
2022-08-14 20:27:41 +00:00
"deb": {
"depends": []
2023-05-01 16:05:46 +00:00
}
2024-06-02 00:17:50 +00:00
}
},
"productName": "creddy",
"version": "0.5.3",
2024-06-02 00:17:50 +00:00
"identifier": "creddy",
"plugins": {},
"app": {
2022-08-14 20:27:41 +00:00
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
2022-12-19 23:26:44 +00:00
"label": "main",
2022-08-14 20:27:41 +00:00
"title": "Creddy",
"width": 800,
"visible": false
2022-08-14 20:27:41 +00:00
}
2022-12-21 22:49:01 +00:00
],
2024-06-02 00:17:50 +00:00
"trayIcon": {
"id": "main",
2022-12-21 22:49:01 +00:00
"iconPath": "icons/icon.png",
"iconAsTemplate": true
2024-06-02 00:17:50 +00:00
},
"security": {
"csp": {
"style-src": [
"'self'",
"'unsafe-inline'"
],
"default-src": [
"'self'"
],
"connect-src": [
"ipc: http://ipc.localhost"
]
}
2022-12-21 22:49:01 +00:00
}
2022-08-14 20:27:41 +00:00
}
}