Add basic tauri support
All checks were successful
build / build (push) Successful in 1m27s

This commit is contained in:
2025-04-29 22:05:14 +09:30
parent 7bc6ca8a39
commit f388efe667
27 changed files with 5118 additions and 0 deletions

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

@@ -0,0 +1,37 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "ingey-eager",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"build": {
"frontendDist": "../dist/ingey-eager/browser",
"devUrl": "http://localhost:4200",
"beforeDevCommand": "bun run start",
"beforeBuildCommand": "bun run build"
},
"app": {
"windows": [
{
"title": "ingey-eager",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"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"
]
}
}