DrCr/src-tauri/tauri.conf.json
2024-11-15 20:06:08 +11:00

32 lines
572 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "drcr",
"version": "0.1.0",
"identifier": "me.yingtongli.drcr",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "DrCr",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/icon.png"
]
}
}