Files
game_install_tools/src-tauri/tauri.conf.json
2025-11-11 20:29:06 +08:00

44 lines
864 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "NoPJ安装器",
"version": "0.1.0",
"identifier": "cn.nopj.gametools",
"build": {
"frontendDist": "../build",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "Game Install",
"width": 1280,
"height": 720,
"resizable": false,
"fullscreen": false,
"decorations": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/logo.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"sources/game.7z"
]
}
}