Anki/qt/launcher-gui/src-tauri/tauri.conf.json
2025-10-18 10:00:11 +08:00

38 lines
1 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Anki Launcher",
"version": "1.0.0",
"identifier": "com.ichi2.anki-launcher",
"build": {
"beforeDevCommand": "./launcher",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "./yarn lb",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "Anki Launcher",
"width": 800,
"height": 780,
"visible": true
}
],
"security": {
"csp": {
"default-src": "'self'",
"connect-src": "anki: http://anki.localhost ipc: http://ipc.localhost tauri: http://tauri.localhost",
"img-src": "data: 'self'",
"style-src": "'self' 'unsafe-inline'"
}
}
},
"bundle": {
"active": false,
"targets": [],
"icon": [
"../../launcher/lin/anki.png",
"icons/icon.ico"
]
}
}