32 lines
753 B
JSON
32 lines
753 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-cli/schema.json",
|
|
"productName": "YetAnotherSuite",
|
|
"version": "0.1.0",
|
|
"identifier": "dev.yetanothersuite.app",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:3000",
|
|
"beforeDevCommand": "pnpm --filter @yetanother/web dev",
|
|
"beforeBuildCommand": "pnpm --filter @yetanother/web build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "YetAnotherSuite",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"minWidth": 800,
|
|
"minHeight": 600
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"plugins": {
|
|
"shell": { "open": true }
|
|
}
|
|
}
|