Files
esengine/packages/editor-app/src-tauri/tauri.conf.json
2025-10-15 17:15:05 +08:00

47 lines
912 B
JSON

{
"productName": "ECS Framework Editor",
"version": "1.0.0",
"identifier": "com.esengine.editor",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:5173",
"beforeBuildCommand": "npm run build",
"frontendDist": "../dist"
},
"bundle": {
"active": false,
"targets": "all"
},
"app": {
"windows": [
{
"title": "ECS Framework Editor",
"width": 1280,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": true,
"transparent": false,
"center": true,
"skipTaskbar": false
}
],
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": {
"allow": ["**"]
}
}
}
},
"plugins": {
"shell": {
"open": true
}
}
}