snotes-deck/src-tauri/tauri.conf.json

38 lines
769 B
JSON
Raw Normal View History

2024-04-07 21:31:08 +02:00
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
2024-11-15 23:56:47 +01:00
"frontendDist": "../dist",
"devUrl": "http://localhost:1420"
2024-04-07 21:31:08 +02:00
},
2024-11-15 23:56:47 +01:00
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
2024-04-07 21:31:08 +02:00
},
2024-11-15 23:56:47 +01:00
"productName": "snotes-deck",
"mainBinaryName": "snotes-deck",
"version": "0.0.12",
"identifier": "space.maidsin.snotes-deck",
"plugins": {},
"app": {
"withGlobalTauri": true,
2024-04-07 21:31:08 +02:00
"windows": [
{
"title": "Snotes Deck",
2024-04-07 21:31:08 +02:00
"width": 800,
2024-11-15 23:56:47 +01:00
"height": 600,
"useHttpsScheme": true
2024-04-07 21:31:08 +02:00
}
],
"security": {
"csp": null
}
}
}