Files
supern2n/src-tauri/tauri.conf.json
T
chun_qiu c955401fb4
Build Windows Portable Package / portable (push) Has been cancelled
Initial Super N2N desktop application
2026-09-01 13:30:52 +08:00

35 lines
710 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Super N2N",
"version": "0.1.0",
"identifier": "com.supern2n.control",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://127.0.0.1:1420",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "Super N2N Control",
"width": 350,
"height": 380,
"minWidth": 350,
"minHeight": 380,
"maxWidth": 350,
"maxHeight": 380,
"resizable": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": false,
"targets": "all"
}
}