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

36 lines
693 B
JSON
Raw Normal View History

2026-05-12 22:38:52 +08:00
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "dpm",
"version": "0.1.0",
"identifier": "com.pine.dpm",
"build": {
"beforeDevCommand": "yarn dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "yarn build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
2026-05-12 23:19:37 +08:00
"title": "大屏媒体轮播系统",
"width": 1200,
"height": 800
2026-05-12 22:38:52 +08:00
}
],
"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"
]
}
}