it-tools/src-tauri/tauri.conf.json

38 lines
754 B
JSON
Raw Normal View History

2024-10-28 11:59:05 +08:00
{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "IT Tools",
"version": "0.1.0",
"identifier": "tech.it-tools",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "pnpm run dev",
"beforeBuildCommand": "pnpm run build"
},
"app": {
"windows": [
{
"title": "IT Tools",
"width": 1024,
"height": 768,
"resizable": true,
"fullscreen": false
}
],
"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"
]
}
}