stort/src-tauri/tauri.conf.json

61 lines
1.2 KiB
JSON
Raw Normal View History

2024-07-30 16:21:16 +08:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
2024-10-22 22:10:01 +08:00
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"frontendDist": "../out",
"devUrl": "http://localhost:3000"
2024-07-30 16:21:16 +08:00
},
2024-10-22 22:10:01 +08:00
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"shortDescription": "Launcher for Steam Deck",
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"targets": [
"appimage",
"deb"
],
"longDescription": "Launcher for Steam Deck",
"resources": [],
"linux": {
2024-07-30 16:21:16 +08:00
"deb": {
"depends": []
2024-10-22 22:10:01 +08:00
}
}
},
"productName": "stort",
"mainBinaryName": "stort",
"version": "0.1.0",
"identifier": "stort",
"plugins": {},
"app": {
2024-08-06 12:39:19 +08:00
"windows": [
{
"decorations": false,
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Stort",
"width": 800
}
2024-10-22 22:10:01 +08:00
],
"security": {
"assetProtocol": {
"scope": [
"$APPDATA/*",
"$APPDATA/**"
],
"enable": true
},
"csp": null
}
2024-07-30 16:21:16 +08:00
}
}