35 lines
710 B
JSON
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"
|
|
}
|
|
}
|