it-tools/src-tauri/tauri.conf.json
2024-11-25 10:36:32 +08:00

31 lines
710 B
JSON

{
"$schema": "https://schema.tauri.app/config/2.0.0",
"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": 1280,
"height": 800,
"resizable": true,
"fullscreen": false
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": ["../public/favicon-32x32.png", "../public/android-chrome-512x512.png", "../public/favicon.ico"]
}
}