Initial commit

This commit is contained in:
2025-10-31 22:35:12 -07:00
commit 426fe66baa
38 changed files with 2239 additions and 0 deletions

29
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,29 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "lncvrt-games-launcher-loader",
"version": "1.0.0",
"identifier": "xyz.lncvrt.lncvrt-games-launcher-loader",
"build": {
"beforeDevCommand": "next dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "next build",
"frontendDist": "../out"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"width": 300,
"height": 300,
"resizable": false,
"maximizable": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": false
}
}