forked from coracle/flotilla
c970038943
Adds a minimal Tauri desktop bootstrap. Run with: pnpm run tauri:dev Reviewed-on: coracle/flotilla#66 Co-authored-by: triesap <tyson@radroots.org> Co-committed-by: triesap <tyson@radroots.org>
38 lines
786 B
JSON
38 lines
786 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "Flotilla",
|
|
"mainBinaryName": "flotilla",
|
|
"identifier": "social.flotilla.app",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build",
|
|
"devUrl": "http://localhost:1847",
|
|
"frontendDist": "../build"
|
|
},
|
|
"app": {
|
|
"security": {
|
|
"capabilities": ["default"]
|
|
},
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "Flotilla",
|
|
"width": 1240,
|
|
"height": 775,
|
|
"resizable": true
|
|
}
|
|
]
|
|
},
|
|
"bundle": {
|
|
"active": false,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|