Files
openwork/src-tauri/tauri.conf.json
2026-01-13 18:40:23 -08:00

26 lines
518 B
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenWork",
"version": "0.1.0",
"identifier": "com.differentai.openwork",
"build": {
"beforeDevCommand": "pnpm dev:web",
"beforeBuildCommand": "pnpm build:web",
"devUrl": "http://localhost:5173",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "OpenWork",
"width": 1180,
"height": 820,
"resizable": true
}
],
"security": {
"csp": null
}
}
}