From a8d9dee437d69283043df5138ccc8e65a004a31a Mon Sep 17 00:00:00 2001 From: MarkLo Date: Sat, 13 Dec 2025 23:34:20 +0800 Subject: [PATCH] feat: add manifest.json for PWA and Safari support --- frontend/app/manifest.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 frontend/app/manifest.json diff --git a/frontend/app/manifest.json b/frontend/app/manifest.json new file mode 100644 index 00000000..ba497323 --- /dev/null +++ b/frontend/app/manifest.json @@ -0,0 +1,31 @@ +{ + "name": "TradingAgentsX", + "short_name": "TAX", + "description": "由 AI 驅動的多代理 LLM 金融交易框架", + "start_url": "/", + "display": "standalone", + "background_color": "#1E1E2E", + "theme_color": "#6B21A8", + "icons": [ + { + "src": "/favicon.ico", + "sizes": "32x32", + "type": "image/x-icon" + }, + { + "src": "/icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "/icon.png", + "sizes": "1024x1024", + "type": "image/png" + } + ] +}