Files
it_tools/src-tauri/tauri.conf.json
Chaos 7aa010c242 feat(app): 初始化应用路由与基础样式- 添加 about 页面并实现页面间导航
- 更新全局样式,设置背景色与文字颜色
-优化 Header 组件,美化窗口控制按钮
- 引入持久化存储工具类
- 调整 Tauri 配置,设置构建路径与窗口最小尺寸- 替换 SVG 图标文件为 sprite 形式
2025-11-05 17:20:53 +08:00

42 lines
847 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "it-tools",
"version": "0.1.0",
"identifier": "cn.nopj.ittools",
"build": {
"frontendDist": "../build",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "IT Tools",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false,
"decorations": false,
"minWidth": 400 ,
"minHeight": 300
}
],
"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"
]
}
}