36 lines
707 B
JSON
36 lines
707 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Image Draw AI",
|
|
"version": "0.1.0",
|
|
"identifier": "com.imagedraw.ai",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "pnpm web:build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Image Draw AI",
|
|
"width": 1100,
|
|
"height": 760,
|
|
"minWidth": 900,
|
|
"minHeight": 620
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null,
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": ["$APPDATA/**"]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": []
|
|
}
|
|
}
|