FakeUKey/view/src-tauri/tauri.conf.json
2025-02-01 18:18:13 +08:00

40 lines
861 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "fakeukey",
"version": "0.1.0",
"identifier": "com.fakeukey.app",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "fakeukey",
"width": 1000,
"height": 500,
"resizable": false,
"maximizable": false,
"minimizable": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"externalBin": ["sidecar/PFakeUKey"],
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}