- Replace the Python/Docker setup with a Rust workspace and Tauri frontend - Add core crates for archive, audio, MIDI, plugin, and desktop UI layers - Refresh the app scaffolding, build config, and documentation
33 lines
651 B
JSON
33 lines
651 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"productName": "Fbrowser",
|
|
"version": "0.1.0",
|
|
"identifier": "com.fbrowser.desktop",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build",
|
|
"devUrl": "http://localhost:1420",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Fbrowser",
|
|
"width": 1600,
|
|
"height": 1040,
|
|
"minWidth": 1280,
|
|
"minHeight": 840,
|
|
"resizable": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": []
|
|
}
|
|
}
|