forked from akanyan/STARTLINER
54 lines
1.3 KiB
JSON
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"
|
|
]
|
|
}
|
|
}
|