File size: 1,125 Bytes
26e115f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | {
"$schema": "https://schema.tauri.app/config/2",
"productName": "Refstudio",
"version": "1.0.0",
"identifier": "app.refstudio.board",
"build": {
"beforeDevCommand": "deno task dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "deno task build",
"frontendDist": "../dist"
},
"app": {
"withGlobalTauri": false,
"windows": [
{
"label": "main",
"title": "Refstudio",
"width": 1280,
"height": 800,
"minWidth": 900,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": false,
"transparent": false,
"shadow": true,
"center": true,
"visible": true,
"zoomHotkeysEnabled": false,
"dragDropEnabled": true
}
],
"security": {
"csp": null
}
},
"plugins": {
"sql": {
"preload": ["sqlite:muse_alpha_v2.db"]
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.ico"
]
}
}
|