Files
STARTLINER/rust/tauri.conf.json
2025-03-06 23:29:13 +00:00

63 lines
1.7 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "STARTLINER",
"version": "0.1.0",
"identifier": "zip.patafour.startliner",
"build": {
"beforeDevCommand": "bun run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "bun run build",
"frontendDist": "../dist"
},
"plugins": {
"fs": {
"requireLiteralLeadingDot": false
},
"deep-link": {
"desktop": {
"schemes": ["rainycolor"]
}
},
"cli": {
"description": "STARTLINER CLI",
"args": [
{
"short": "s",
"name": "start",
"description": "Just start"
},
{
"short": "g",
"name": "game",
"description": "Game",
"takesValue": true,
"possibleValues": ["chunithm", "ongeki"]
},
{
"short": "n",
"name": "name",
"takesValue": true,
"description": "Profile name"
}
]
}
},
"app": {
"windows": [],
"security": {
"csp": {
"img-src": "'self' asset: https: http://asset.localhost blob: data:"
},
"assetProtocol": {
"enable": true,
"scope": ["**", "**/*", "**/.*/**/*"]
}
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": ["icons/slow.png", "icons/slow.ico"]
}
}