Files
VRCT/src-tauri/tauri.conf.json
2025-06-07 16:26:39 +09:00

60 lines
1.6 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "VRCT",
"version": "3.2.0",
"identifier": "com.vrct.app",
"build": {
"beforeDevCommand": "",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "",
"frontendDist": "../dist"
},
"app": {
"enableGTKAppId": false,
"windows": [{
"title": "VRCT",
"center": true,
"width": 450,
"height": 220,
"minWidth": 400,
"minHeight": 200,
"transparent": true,
"decorations": false,
"shadow": false
}],
"security": {
"csp": null,
"capabilities": ["default", "vrct-capability"]
}
},
"bundle": {
"active": true,
"targets": "nsis",
"publisher": "m's software",
"copyright": "Copyright m's software",
"licenseFile": "../LICENSE",
"shortDescription": "VRCT",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"bin/VRCT-sidecar"
],
"resources": {
"bin/_internal": "_internal",
"plugins": "plugins"
},
"windows": {
"nsis": {
"template": "nsis/template.nsi",
"installMode": "currentUser",
"displayLanguageSelector": true
}
}
}
}