1
0
Fork 0

Initial Commit

This commit is contained in:
Jordon Brooks 2025-06-22 13:47:07 +01:00
commit 8ed5b576eb
Signed by: jordon
GPG key ID: DBD9758CD53E786A
33 changed files with 5495 additions and 0 deletions

33
src-tauri/tauri.conf.json Normal file
View file

@ -0,0 +1,33 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "openvcs",
"version": "0.1.0",
"identifier": "dev.jordon.openvcs",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"title": "openvcs",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}