Files
ingey-eager/src-tauri/tauri.conf.json
vato007 f388efe667
All checks were successful
build / build (push) Successful in 1m27s
Add basic tauri support
2025-04-29 22:05:14 +09:30

38 lines
789 B
JSON

{
"$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"
]
}
}