Files
FlightTube/src-tauri/tauri.conf.json
T
vincent ad29f57e65 build: stop producing a disk image
"targets": "all" built a 90MB DMG on every single build, for nobody:
this is installed to /Applications by copying the .app. Building only
the app also shortens each build.

A full rebuild from an empty target directory takes 78 seconds, so the
cache is worth clearing when it grows rather than hoarding.
2026-08-29 22:07:59 +02:00

57 lines
1.2 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "FlightTube",
"version": "0.1.0",
"identifier": "com.vincent.flighttube",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "FlightTube",
"width": 1320,
"height": 820,
"minWidth": 1080,
"minHeight": 620,
"center": true,
"titleBarStyle": "Overlay",
"hiddenTitle": true
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": [
"$HOME/Movies/FlightTube/**",
"$APPDATA/**",
"$APPLOCALDATA/**"
]
}
}
},
"bundle": {
"active": true,
"targets": ["app"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"externalBin": [
"binaries/ffmpeg",
"binaries/ffprobe"
],
"resources": {
"resources/python": "python",
"resources/yt-dlp.pyz": "yt-dlp.pyz"
}
}
}