fc93c2ee57
The Electron build was accidentally bundling the entire tauri/src-tauri/target Rust build directory into app.asar (1.2GB!), inflating the installer to 304MB. Added a files exclusion so Electron and Tauri builds stay independent.
37 lines
708 B
JSON
37 lines
708 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Freight Calculator Pro",
|
|
"version": "1.3.0",
|
|
"identifier": "com.freightcalc.pro",
|
|
"build": {
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Freight Calculator Pro",
|
|
"width": 950,
|
|
"height": 950,
|
|
"minWidth": 800,
|
|
"minHeight": 700,
|
|
"resizable": true,
|
|
"fullscreen": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|