musealpha / src-tauri /tauri.conf.json
asdf98's picture
fix: explicitly enable native OS drag-drop on main window
26e115f verified
{
"$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"
]
}
}