Files
STARTLINER/rust/tauri.conf.json
2025-02-24 00:01:25 +00:00

48 lines
1.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "STARTLINER",
"version": "0.1.0",
"identifier": "moe.tendokyu.akanyan.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"]
}
}
},
"app": {
"windows": [
{
"title": "STARTLINER",
"width": 600,
"height": 500,
"minWidth": 600,
"minHeight": 500
}
],
"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"]
}
}