Files
pureref-tauri/src-tauri/tauri.conf.json
2025-12-19 20:51:13 +08:00

43 lines
908 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "RefVroid",
"version": "0.1.1",
"identifier": "com.refvroid.app",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "RefVroid",
"width": 1280,
"height": 720,
"resizable": true,
"decorations": false,
"transparent": false,
"alwaysOnTop": false,
"dragDropEnabled": true,
"backgroundColor": [25, 25, 25, 255]
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": ["msi"],
"icon": [
"icons/icon.png",
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}