mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
31 lines
710 B
JSON
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"]
|
|
}
|
|
}
|