Files
VRC-Circle/src-tauri/tauri.conf.json
2025-10-24 11:42:46 +07:00

40 lines
786 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "VRC Circle",
"version": "0.0.1",
"identifier": "cafe.kirameki.vrc-circle",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "VRC Circle",
"width": 1200,
"height": 800
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": ["**"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}