Files
picoforge/src-tauri/tauri.conf.json
T

35 lines
809 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "picoforge",
"version": "0.1.3",
"identifier": "in.suyogtandel.picoforge",
"build": {
"beforeDevCommand": "deno task dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "deno task build",
"frontendDist": "../build"
},
"app": {
"windows": [
{
"title": "pico-forge",
"width": 1280,
"height": 720,
"minWidth": 500,
"minHeight": 250,
"resizable": true,
"decorations": false,
"transparent": true
}
],
"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"]
}
}