amtkstat/src-tauri/tauri.conf.json

42 lines
955 B
JSON
Raw Permalink Normal View History

2024-09-09 03:12:35 -04:00
{
"build": {
"beforeDevCommand": "dotnet watch run --project src/AmtrakStatus.csproj",
"beforeBuildCommand": "dotnet publish -c release src/AmtrakStatus.csproj -o dist",
2024-11-13 16:25:57 -05:00
"frontendDist": "../dist/wwwroot",
"devUrl": "http://localhost:1420"
2024-09-09 03:12:35 -04:00
},
2024-11-13 16:25:57 -05:00
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
2024-09-09 03:12:35 -04:00
},
2024-11-13 16:25:57 -05:00
"productName": "AMTK Status",
"mainBinaryName": "AMTK Status",
"version": "0.201.0",
"identifier": "com.tpaw.amtkstat",
"plugins": {},
"app": {
"withGlobalTauri": true,
2024-09-09 03:12:35 -04:00
"windows": [
{
"title": "Amtrak Status",
2024-09-09 03:12:35 -04:00
"resizable": true,
"width": 1100,
"height": 768,
"minWidth": 1100,
"minHeight": 768,
"maxWidth": 1450,
"maxHeight": 950
2024-09-09 03:12:35 -04:00
}
],
"security": {
"csp": null
}
}
}