Files
game_install_tools/src-tauri/tauri.conf.json
Chaos 9b1562bf4e feat(layout): 添加视频壁纸组件并优化布局结构
- 引入 VideoWallpaper 组件作为全局视频背景- 调整主内容区域层级和定位方式
- 更新窗口尺寸配置为 1280x720
- 优化 Header 组件层级防止被遮挡
- 移除页面级视频壁纸实现逻辑
2025-11-11 17:29:48 +08:00

41 lines
808 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"
]
}
}