Files
STARTLINER/rust/tauri.conf.json
akanyan a29bce2227 feat: phase 2
Newfound motivation
2025-02-23 05:12:21 +01:00

54 lines
1.3 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: blob: data:"
},
"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"
]
}
}